.NET Core也可以使用MongoDB了

來源:互聯網
上載者:User

標籤:

可能是由於.NET Core還不是正式版的緣故吧,MongoDB的官方Driver(http://mongodb.github.io/mongo-csharp-driver/)一直不支援.NET Core,這給想在.NET Core上嘗試MongoDB帶來了不便,本人就是其中之一 :)

於是Fork了官方的source code,沒有太多的修改,就可以運行了,於是打包發布,不敢獨享!

可以在Nuget上搜 ”RaisingStudio.MongoDB.Driver“ 找到這個包,也可以直接用Package Management Console安裝:

Install-Package RaisingStudio.MongoDB.Driver

樣本:

using MongoDB.Bson;using MongoDB.Driver;
var client = new MongoClient("mongodb://localhost:27017");var database = client.GetDatabase("foo");var collection = database.GetCollection<BsonDocument>("bar");await collection.InsertOneAsync(new BsonDocument("Name", "Jack"));var list = await collection.Find(new BsonDocument("Name", "Jack"))    .ToListAsync();foreach(var document in list){    Console.WriteLine(document["Name"]);}

或使用強型別方式:

public class Person{    public ObjectId Id { get; set; }    public string Name { get; set; }}
var client = new MongoClient("mongodb://localhost:27017");var database = client.GetDatabase("foo");var collection = database.GetCollection<Person>("bar");await collection.InsertOneAsync(new Person { Name = "Jack" });var list = await collection.Find(x => x.Name == "Jack")    .ToListAsync();foreach(var person in list){    Console.WriteLine(person.Name);}

詳細說明請參見官方文檔:

http://mongodb.github.io/mongo-csharp-driver/

 

原始碼:

https://github.com/zhongzf/mongo-csharp-driver

.NET Core也可以使用MongoDB了

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.