MongoDB的.NET程序库 NoRM

fmms 13年前
     <p>NoRM是个包装了MongoDB的.NET程序库,简化了.NET操纵该文档数据库的过程。其主要特性有:强类型的接口、支持LINQ、支持.NET与Mono。</p>    <p>该提供器的主要特性有:</p>    <ul>     <li>为MongoDB提供了一个强类型的接口</li>     <li>支持大多数常用的MongoDB命令</li>     <li>支持LINQ-to-MongoDB</li>     <li>兼容于.NET与Mono</li>     <li>BSON到.NET CLR类型的双向序列化;BSON是MongoDB所用的JSON文档的二进制编码序列化格式</li>    </ul>    <p>下面是NoRM的使用示例:</p>    <pre class="brush:c#; toolbar: true; auto-links: false;">//connString is a URI to the database with the credentials you need.  var coll = (new Mongo(connString)).GetCollection<Product>();  //create a new object to be added to the collection  var obj = new Product();  obj._id = ObjectId.NewObjectID();  obj.Title = "Shoes";  //save the object  coll.Insert(obj);  //find the object  var obj2 = coll.FindOne(new { _id = obj._id}).First();</pre>项目地址:    <a href="/misc/goto?guid=4958189196622297378">http://github.com/atheken/NoRM</a>