1. 程式人生 > 資料庫 >mongodb使用c#驅動資料插入demo

mongodb使用c#驅動資料插入demo

Mongodb提供了多種開發語言的驅動,java,python,c++,c# 等,這裡選用c#驅動作為測試;

首先上mongo官網下載驅動。Ps:官方網站經常連線不順利。

還不如直接在vs的nuget管理包中搜索mongoDB.driver.

需要引入的名稱空間:

using MongoDB.Bson;
using MongoDB.Driver;

Driver是驅動核心,Bson是和資料格式相關的;

定義一個mongo客戶端,一個mongodb,一個數據集合;

protected staticIMongoClient client;
protected staticIMongoDatabase database;
protected staticIMongoCollection<BsonDocument> collection;

連線上MongoDB

//定義連線
client = new MongoClient("mongodb://127.0.0.1:27017");
//獲取test資料庫
database = client.GetDatabase("test");     
//獲取test資料庫中的集合bios
collection = database.GetCollection<BsonDocument>("bios");

這裡解釋說明下:首先你得讓mongod(mongo的服務端)執行起來,不然服務端都沒開,怎麼連線呢;目前測試還沒有涉及到安全以及使用者許可權資料庫管理這塊,所以這裡的連線都是使用的預設不帶使用者登入驗證;

需求注意的是,如果我們建立的是控制檯程式,那麼這個連線必須寫地址必須帶埠,就像上面所寫;

如果是建立的一個MVC web,你僅僅是測試資料插入,在這種無安全驗證的方式下,你可以省去連線字串。

如下圖;

接下來就是定義一個測試資料:

var document =new BsonDocument
      {
          { "address",newBsonDocument
            {
              { "street","2 Avenue" },{ "zipcode","10075" },{ "building","1480" },{ "coord",new BsonArray { 73.9557413,40.7720266 } }
            }
          },{ "borough","Manhattan"},{ "cuisine","Italian"},{ "grades",new BsonArray
              {
                new BsonDocument
                {
                  { "date",new DateTime(2014,10,1,DateTimeKind.Utc) },{ "grade","A" },{ "score",11 }
                },new BsonDocument
                {
                  { "date",6,"B" },17 }
                }
              }
          },{ "name","Vella"},{ "restaurant_id","41704620" }
      };

最後呼叫InsertOneAsync()方法;

collection.InsertOneAsync(document);

最終插入結果:

這裡使用shell來看資料的話就太不直觀了,這裡使用的是比較常用的一個mongodb視覺化管理工具Robomongo

附上程式碼:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MongoDB.Bson;
using MongoDB.Driver;
namespace mongodbInsert
{
  class Program
  {
    protected static IMongoClient client;
    protected static IMongoDatabase database;
    protected static IMongoCollection<BsonDocument> collection; 
    static void Main(string[] args)
    {
       client = new MongoClient("mongodb://127.0.0.1:27017");
       database = client.GetDatabase("test");
       collection = database.GetCollection<BsonDocument>("bios");
       for (int i = 0; i < 14; i++)
       {
         var document = new BsonDocument
      {
          { "address",new BsonDocument
            {
              { "street","Manhattan" },"Italian" },"Vella" },"41704620" }
      };
         collection.InsertOneAsync(document);
       }
       Console.WriteLine();
       Console.ReadLine();
    }
  }
}

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對我們的支援。如果你想了解更多相關內容請檢視下面相關連結