博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MongoDB--CSharp Driver Quickstart .
阅读量:4598 次
发布时间:2019-06-09

本文共 4005 字,大约阅读时间需要 13 分钟。

原文链接

介绍

本文的目的是让你对如何使用Mongodb的C#驱动有一个简单的了解,当你阅读完本文你就可以参考其他文章以了解更多信息。

下载C#驱动

你可以在下载需要的驱动。网站提供压缩包(zip)和安装包(msi)两种格式的驱动,下载完成后你可以将他解压或安装到你需要的目录。

添加C#驱动

在你的visual studio项目右击项目选择"Add Reference..."将如下两个dll添加到项目的引用中.

1. MongoDB.Bson.dll

2. MongoDB.Driver.dll

添加需要的命名空间

你的项目要使用MongoDB,至少需要下面两个命名空间

 

[html]
  1. using MongoDB.Bson;  
  2. using MongoDB.Driver;  
using MongoDB.Bson;using MongoDB.Driver;

另外你也许需要下面这些命名空间

 

 

[html]
  1. using MongoDB.Driver.Builders;  
  2. using MongoDB.Driver.GridFS;  
  3. using MongoDB.Driver.Linq;  
using MongoDB.Driver.Builders;using MongoDB.Driver.GridFS;using MongoDB.Driver.Linq;

 

获取服务器对象

获取服务器的连接对象非常简单

 

[html]
  1. var connectionString = "mongodb://localhost/?safe=true";  
  2. var server = MongoServer.Create(connectionString);  
var connectionString = "mongodb://localhost/?safe=true";var server = MongoServer.Create(connectionString);

你应该在你的连接字符串中始终加上"safe=true"

 

或许你想用一个全局变量来保存你的服务器对象,其实当你使用相同的连接字符调用MongoServer.Create方法时返回的服务器对象是相同的对象引用,因此你无需采用全局变量来保存你的服务器对象在需要的时候调用MongoServer.Create方法即可。

获取数据库对象

获取数据库对象的方法如下:

 

[html]
  1. var database = server.GetDatabase("test"); // "test" is the name of the database  
var database = server.GetDatabase("test"); // "test" is the name of the database

如果你需使用更多的数据库只需要多次调用server.GetDatabase()方法即可。

 

如何确定使用BsonDocument对象还是自定义类对象

你有两种方式来操作一个集合

1.使用BsonDocument对象。

2.使用自定义的类对象。

当你要处理的数据格式比较灵活难以用自定义的类来描述时你应该考虑采用BsonDocument来操作集合.

采用自定义的类对象可以让其他开发人员快速了解你的意图,自定义的类需要满足如下两个条件:

1.需要一个没有参数的构造函数。

2.定义公开的可读写的字段或属性来操作数据库中表相关的字段。

另外如果你要用自定义类操作根文档,你的类还必须包含一个ID属性。通常情况下id的类型为ObjectId。

获取集合对象

为了更好理解这个小节,我们采用一个名叫Entity的自定义类,你可以使用如下方式获取包含Entity文档的集合。

 

[html]
  1. var collection = database.GetCollection<Entity>("entities"); // "entities" is the name of the collection  
var collection = database.GetCollection
("entities"); // "entities" is the name of the collection

 

插入一个文档

插入一个文档的方式非常简单

 

[html]
  1. var entity = new Entity { Name = "Tom" };  
  2. collection.Insert(entity);  
  3. var id = entity.Id; // Insert will set the Id if necessary (as it was in this example)  
var entity = new Entity { Name = "Tom" };collection.Insert(entity);var id = entity.Id; // Insert will set the Id if necessary (as it was in this example)

 

查找文档

在这个列子中我将根据指定的id来获取相应的文档信息。

 

[html]
  1. var query = Query.EQ("_id", id);  
  2. var entity = collection.FindOne(query);  
var query = Query.EQ("_id", id);var entity = collection.FindOne(query);

 

保存文档

你可以采用如下方式来保存一个已更改的文档

 

[html]
  1. entity.Name = "Dick";  
  2. collection.Save(entity);  
entity.Name = "Dick";collection.Save(entity);

 

更新已存在的文档

另一种保存的方式就是更新。两种方法的不同点是Save()方法是将整个文档数据发回给服务器,而update()只是将更改的信息返回给服务器。

 

[html]
  1. var query = Query.EQ("_id", id);  
  2. var update = Update.Set("Name", "Harry"); // update modifiers  
  3. collection.Update(query, update);  
var query = Query.EQ("_id", id);var update = Update.Set("Name", "Harry"); // update modifierscollection.Update(query, update);

 

删除已存在的文档

要删除集合中的一条文档信息写法如下:

 

[html]
  1. var query = Query.EQ("_id", id);  
  2. collection.Remove(query);  
var query = Query.EQ("_id", id);collection.Remove(query);

 

你无需调用Connect() 或 Disconnect() 方法

C#驱动有个连接池以高效的管理服务器连接。你无需调用Connect() 或 Disconnect()方法,驱动会自动管理连接。调用Connect()方法没有什么坏处,但是不能调用Disconnect()方法因为调用该方法会关闭连接池中的所有连接

完整的例子代码

 

[html]
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5.   
  6. using MongoDB.Bson;  
  7. using MongoDB.Driver;  
  8. using MongoDB.Driver.Builders;  
  9.   
  10.   
  11. namespace ConsoleApplication1  
  12. {  
  13.     public class Entity  
  14.     {  
  15.         public ObjectId Id { get; set; }  
  16.         public string Name { get; set; }  
  17.     }  
  18.   
  19.     class Program  
  20.     {  
  21.         static void Main(string[] args)  
  22.         {  
  23.             var connectionString = "mongodb://localhost/?safe=true";  
  24.             var server = MongoServer.Create(connectionString);  
  25.             var database = server.GetDatabase("test");  
  26.             var collection = database.GetCollection<Entity>("entities");  
  27.   
  28.             var entity = new Entity { Name = "Tom" };  
  29.             collection.Insert(entity);  
  30.             var id = entity.Id;  
  31.   
  32.             var query = Query.EQ("_id", id);  
  33.             entity = collection.FindOne(query);  
  34.   
  35.             entity.Name = "Dick";  
  36.             collection.Save(entity);  
  37.   
  38.             var update = Update.Set("Name", "Harry");  
  39.             collection.Update(query, update);  
  40.   
  41.             collection.Remove(query);  
  42.         }  
  43.     }  
  44. }  

转载于:https://www.cnblogs.com/lykbk/p/jkhjkhjkhjkhjk6787687878.html

你可能感兴趣的文章
JavaScript空判断
查看>>
洛谷 P1439 【模板】最长公共子序列(DP,LIS?)
查看>>
python timeit
查看>>
Wireless Network 并查集
查看>>
51nod 1019 逆序数
查看>>
20145202马超《JAVA》预备作业1
查看>>
云推送注意(MSDN链接)
查看>>
IDEA 生成 jar 包
查看>>
加减乘除混合版
查看>>
linux基础6-bash shell编程
查看>>
掌握这几种微服务模式助你成为更出色的工程师
查看>>
为什么很多语言选择在JVM上实现
查看>>
绘制dot 图
查看>>
CSS Reset CSS Framework
查看>>
如何用WinCC发送报警消息至微信
查看>>
LeetCode算法扫题系列19
查看>>
nginx获取经过层层代理后的客户端真实IP(使用正则匹配)
查看>>
YII实现dropDownList 联动事件
查看>>
搞定PHP面试 - 正则表达式知识点整理
查看>>
为什么JavaScript里面0.1+0.2 === 0.3是false
查看>>