コード例 #1
0
ファイル: services.go プロジェクト: vegansk/beego-mgo
// Execute the MongoDB literal function
func (this *Service) DBAction(databaseName string, collectionName string, mongoCall mongo.MongoCall) (err error) {
	return mongo.Execute(this.UserId, this.MongoSession, databaseName, collectionName, mongoCall)
}
コード例 #2
0
ファイル: services.go プロジェクト: ZloiBubr/beego-mgo
// DBAction executes the MongoDB literal function
func (service *Service) DBAction(databaseName string, collectionName string, dbCall mongo.DBCall) (err error) {
	return mongo.Execute(service.UserID, service.MongoSession, databaseName, collectionName, dbCall)
}