1. 程式人生 > >MongoDB+C#基本操作實現

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<BsonDocument> collection = db.GetCollection<BsonDocument>("arcgis");
 
參考:點選開啟連結