Simple-mongodbMongoDB 的 C# 驱动包
Simple-mongodb 是 MongoDB 的 C# 驱动包,主要特点是使用匿名类型和 JSON 。
示例代码:
var sessionFactory = new SimoSessionFactory();
using (var session = sessionFactory.GetSession("Pls.Simo.GettingStarted"))
{
var entityStore = new SimoEntityStore(session, "MyDatabase");
var interestingUrl = entityStore.FindOne<InterestingUrl>(new { Url = @"http://daniel.wertheim.se" });
}
评论