来自mongoDB.Driver文档(http://docs.mongodb.org/ecosystem/tutorial/getting-started-with-csharp-driver/)
获取对服务器对象的引用
要从客户端对象获取对服务器对象的引用,请写下:
var server = client.GetServer();
在最新版本中,GetServer
方法已经消失,但文档尚未更新,我们现在使用了什么?
感谢您的时间。
答案 0 :(得分:14)
GetServer
是旧API的一部分。
要使用新的,有光泽的async
- 就绪API,只需直接在客户端上调用GetDatabase
即可在其上获取IMongoDatabase
和GetCollection
以获得IMongoCollection
1}}:
var db = client.GetDatabase("HamsterSchool");
var collection = db.GetCollection<Hamster>("Hamsters");