MongoDB+C#基本操作实现

1、MongoDB

在服务器端安装MongoDB,在客户端安装RoboMongo,可以直接操作数据库,而无需使用mongo命令行操作。


2、C#

在C#中使用MongoDB,首先需要引用MongoDB动态库,下载CSharpDriver-2.3.0,得到所需的动态库,最新版需要.net 4.5 ,因此开发平台至少是VS2012.

 var connectionString = "mongodb://172.16.10.2:27017";
 MongoClient client = new MongoClient(connectionString);
 MongoServer server = client.GetServer();
 MongoDatabase db = server.GetDatabase("zjtest");
 MongoCollection collection = db.GetCollection("arcgis");
 
参考: 点击打开链接

                 点击打开链接

你可能感兴趣的:(MongoDB)