摘要: 1.介绍 该文档是1.8版本的C#驱动。 本节教程讨论C#类和BSON文档之间的序列化和反序列化。序列化是将对象映射成一个可以存储在MongoDB中的BSON文档的过程,反序列化是从一个BSON文档重新构建一个对象的过程。由于这样的原因,序列化过程也总是被用做“对象映射”。 序列化通过BSON库处理。BSON库有一个可扩展的序列化架构,所有如果你需要控制序列化,你可以做到。BSON库提供一个默认序... 阅读全文
posted @ 2014-05-20 22:21 Reinhard_Hsu 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 1.介绍 该教程涵盖了1.8版本的C#驱动中的LINQ查询。你可能已经阅读最新的C# Driver Tutorial。 2.快速开始 首先,给程序添加下面的using声明 using MongoDB.Driver.Linq;然后,像往常一样,获取一个collection的引用变量:var collection = database.GetCollection("collectionname");写... 阅读全文
posted @ 2014-05-20 22:07 Reinhard_Hsu 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 1.下载 如果下载的.zip文件,只需要解压即可。 如果安装的.msi文件,它会将C#驱动DLL放在C:\Program Files (x86)\MongoDB\CSharp Driver xxx的位置。 2.将C#驱动DLL添加引用 MongoDB.Bson.dll MongoDB.Driver.dll 你也可以使用NuGet包,给项目安装驱动。 3.添加using声明 using MongoD... 阅读全文
posted @ 2014-05-20 21:30 Reinhard_Hsu 阅读(220) 评论(0) 推荐(0) 编辑
摘要: Community Supported C# Drivers See the officially supported MongoDB C# driver mongodb-csharp driver simple-mongodb driver NoRM Tools MongoDB.Emitter Document Wrapper ASP.NET Membership and Role Pro... 阅读全文
posted @ 2014-05-20 20:53 Reinhard_Hsu 阅读(198) 评论(0) 推荐(0) 编辑
摘要: MongoDB C# Driver是官方提供的.NET C#驱动。 Getting Started with the C# Driver C# Driver Tutorial C# Driver LINQ Tutorial Serialize Documents with the C# Driver Authenticate to MongoDB with the C# Driver API D... 阅读全文
posted @ 2014-05-20 20:51 Reinhard_Hsu 阅读(368) 评论(0) 推荐(0) 编辑