mongodb mongo csharp driver 源碼分析(1)

來源:互聯網
上載者:User

mongodb mongo csharp driver:https://github.com/mongodb/mongo-csharp-driver/downloads 

具體的可以到mongodb官方網站上進行尋找。

下面例子是一個簡單的查詢:

//建立資料庫連接,預設為本地串連連接埠為27017
MongoServer server = MongoServer.Create();
//擷取資料庫,如果沒有會自動建立
MongoDatabase database = server.GetDatabase("MyDatabase");
//擷取collection集合
MongoCollection things = database.GetCollection("things");
try
{
//開啟串連
server.Connect();
//設定查詢條件 x like (3,4)
QueryConditionList condition = new QueryConditionList("x");
condition.In(new BsonArray().Add(new BsonInt32(3)).Add(new BsonInt32(4)));
MongoCursor<BsonDocument> cur = things.FindAs<BsonDocument>(condition);
foreach (BsonDocument item in cur)
{
MessageBox.Show(item["j"].AsDouble.ToString());
}
}
finally
{
//關閉串連
server.Disconnect();
}

在mongo csharp driver中,主要有Driver和Bson包。上面的例子,我們使用一幾個類

MongoServer

MongoDatabase

MongoCollection

QueryConditionList

MongoCursors

後續將首先分析這幾個類,進行實現對資料庫的增、刪、改、查功能。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.