0
良い一日のすべての機能を取得する:どのように私ははMongoDBのデータベース・オブジェクトから、関数の定義にアクセスすることができましたか?のMongoDB + C#の - 、</p> <p>質問あるデータベース
const string connectionString = "mongodb://localhost";
// Create a MongoClient object by using the connection string
var client = new MongoClient(connectionString);
//Use the MongoClient to access the server
MongoServer server = client.GetServer();
// Use the server to access the 'local' database
var database = server.GetDatabase("local");
//What next?
//.................................................
関数の定義はどういう意味ですか?あなたがMongoDbに持っている関数のように?または、コンソールからのヘルプログのように? –
答えをありがとう。私はカスタムのユーザー定義関数を意味します。 – user306080