共计 6778 个字符,预计需要花费 17 分钟才能阅读完成。
MongoDB.Driver 是操作 mongo 数据库的驱动,最近 2.0 以下版本已经从 GitHub 和 Nuget 中移除了,也就是说.NET Framework4.0 不再能从官方获取到 MongoDB 的驱动了,其次 MongoDB.Driver2.0 开始 API 变更巨大,本文不适用 MongoDB.Driver2.0 以下版本,亦不适用.NET Framework4.5 以下版本
要在.NET 中使用 MongoDB,就必须引用 MongoDB 的驱动,使用 Nuget 安装 MongoDB.Driver 是最方便的,目前 Nuget 支持的 MongoDB 程序包有对.NET Framework4.5 以上版本的依赖
安装完成之后会在引用中新增三个 MongoDB 的程序集引用,其中 MongoDB.Driver.Core 在 2.0 版本以下是没有的
先构建一个实体基类,因为 Mongo 要求每个文档都有唯一 Id, 默认为 ObjectId 类型(根据时间 Mac 地址 Pid 算出来的,类似 GUID,适用于分布式),在这个基类中添加 Id 属性
using MongoDB.Bson;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MongoTest
{/// <summary>
/// 自定义类型 Id
/// </summary>
/// <typeparam name="T"></typeparam>
public abstract class BaseEntity<T>
{public T Id {get; set; }
}
/// <summary>
/// Mongo 默认填充 ObjectId 类型的 Id
/// </summary>
public abstract class DefaultIdEntity : BaseEntity<ObjectId>
{}}
开始构建数据库访问类 DbContext
using MongoDB.Driver;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MongoTest
{public class DbContext
{public readonly IMongoDatabase _db;
public DbContext()
{//此为开启验证模式 必需使用用户名 密码 及指定登陆的数据库 可采用, 分割连接多个数据库
var client = new MongoClient("mongodb://root:123456@192.168.20.54:27017/admin");
//未开启验证模式数据库连接
// var client = new MongoClient("mongodb://127.0.0.1:27017");
//指定要操作的数据库
_db = client.GetDatabase("mytest");
}
private static string InferCollectionNameFrom<T>()
{var type = typeof(T);
return type.Name;
}
public IMongoCollection<T> Collection<T, TId>() where T : BaseEntity<TId>
{var collectionName = InferCollectionNameFrom<T>();
return _db.GetCollection<T>(collectionName);
}
/// <summary>
/// 实体类名和数据库中文档(关系型数据库中的表)名一致时使用
/// </summary>
public IMongoCollection<T> Collection<T>() where T : DefaultIdEntity
{var collectionName = InferCollectionNameFrom<T>();
return _db.GetCollection<T>(collectionName);
}
public IMongoCollection<T> Collection<T, TId>(string collectionName) where T : BaseEntity<TId>
{return _db.GetCollection<T>(collectionName);
}
/// <summary>
/// 实体类名和数据库中文档(关系型数据库中的表)不一致时使用,通过 collectionName 指定要操作得文档
/// </summary>
public IMongoCollection<T> Collection<T>(string collectionName) where T : DefaultIdEntity
{return _db.GetCollection<T>(collectionName);
}
}
}
现有数据库数据 文档 book 包含数据如下
开始构建与文档对应的实体,mongo 是文档数据库,对单词得大小写是敏感得,所以构建的实体的字段也应该是小写的,有点不符合习惯
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MongoTest
{public class book : DefaultIdEntity
{public string title {get; set; }
public double price {get; set; }
public string author {get; set; }
public string publisher {get; set; }
public int saleCount {get; set; }
}
}
现在开始增删查改操作,其中查找和删除的 filter 参数有两种形式,lambda 和 Definition
using MongoDB.Driver;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MongoTest
{public class OperatDb
{static IMongoCollection<book> bookDao;
static OperatDb()
{bookDao = new DbContext().Collection<book>();}
public static void Excute()
{Console.WriteLine();
QueryAll();
Console.WriteLine();
Query();
Console.WriteLine();
Insert();
Console.WriteLine();
QueryAll();
Console.WriteLine();
Update();
Console.WriteLine();
Delete();
Console.WriteLine();
QueryAll();
Console.ReadKey();}
public static void QueryAll()
{var books = bookDao.Find(x => true).ToList();
foreach (var item in books)
{Console.WriteLine(item.ToString());
}
}
public static void Query(System.Linq.Expressions.Expression<Func<book, bool>> filter = null)
{if (filter == null) filter = x => x.author == "韩寒";
var books = bookDao.Find(filter).ToList();
foreach (var item in books)
{Console.WriteLine(item.ToString());
}
}
public static void Update()
{var filter = Builders<book>.Filter.Eq(x => x.title, "悲伤逆流成河");
var book = bookDao.Find(filter).FirstOrDefault();
Console.WriteLine("更新前:{0}", book.ToString());
var update = Builders<book>.Update.Set(x => x.publisher, "新时代出版社")
.Set(x => x.price, 35)
.Inc(x => x.saleCount, 10);
var result = bookDao.UpdateOne(filter, update);
Console.WriteLine("IsAcknowledged:{0} MatchedCount:{1} UpsertedId:{2} IsModifiedCountAvailable:{3} ModifiedCount:{4}",
result.IsAcknowledged, result.MatchedCount, result.UpsertedId, result.IsModifiedCountAvailable, result.ModifiedCount);
book = bookDao.Find(filter).FirstOrDefault();
Console.WriteLine("更新后:{0}", book.ToString());
}
public static void Delete()
{var result = bookDao.DeleteOne(x => x.title == "悲伤逆流成河");
Console.WriteLine("DeletedCount:{0} IsAcknowledged:{1} ", result.DeletedCount, result.IsAcknowledged);
}
public static void Insert()
{var bookInfo = new book
{Id = new MongoDB.Bson.ObjectId(),
author = "郭敬明",
price = 10.00,
publisher = "春风文艺出版社",
saleCount = 0,
title = "悲伤逆流成河"
};
bookDao.InsertOne(bookInfo);
}
}
}
因为我对 book 类的 ToString 方法进行了重写,所以输出结果如下
上面都是用的数据库和实体字段名一致的情况,如果不一致怎么办呢,Xml 和 Json 等序列化都有标签特性可以用别名,Bson 肯定也会有,新建 BookInfo 实体如下
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MongoTest
{public class BookInfo : DefaultIdEntity
{public string Title {get; set; }
public double Price {get; set; }
public string Author {get; set; }
public string Publisher {get; set; }
public int SaleCount {get; set; }
}
}
将上面执行操作的 book 全部替换成 BookInfo 试试,发现没报错,再去数据库看看会发现,数据库新增了一个文档,我们预期得结果是要操作在 book 上,显然这不是我们想要的
现在将调用 Collection 调用改为指定 collectionName 为 book 的形式
static IMongoCollection<BookInfo> bookDao;
static OperatDb()
{bookDao = new DbContext().Collection<BookInfo>("book");
}
再次运行程序,发现报错了,文档节点和实体字段不匹配
现在给 BookInfo 的字段都加上 Bson 的标签特性
using MongoDB.Bson.Serialization.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MongoTest
{public class BookInfo : DefaultIdEntity
{[BsonElement("title")]
public string Title {get; set; }
[BsonElement("price")]
public double Price {get; set; }
[BsonElement("author")]
public string Author {get; set; }
[BsonElement("publisher")]
public string Publisher {get; set; }
[BsonElement("saleCount")]
public int SaleCount {get; set; }
}
}
现在一切正常了,显示结果和之前的一样就不再贴图了,有子文档的数据操作与此类似,譬如有如下数据
构建实体如下
public class Director : Entity
{[BsonElement("name")]
public string Name {get; set; }
[BsonElement("country")]
public string Country {get; set; }
[BsonElement("age")]
public int Age {get; set; }
[BsonElement("movies")]
public List<Movie> Movies {get; set; }
}
public class Movie
{[BsonElement("name")]
public string Name {get; set; }
[BsonElement("year")]
public int Year {get; set; }
}
更多 MongoDB 相关教程见以下内容:
MongoDB 文档、集合、数据库简介 http://www.linuxidc.com/Linux/2016-12/138529.htm
MongoDB 3 分片部署及故障模拟验证 http://www.linuxidc.com/Linux/2016-12/138529.htm
Linux CentOS 6.5 yum 安装 MongoDB http://www.linuxidc.com/Linux/2016-12/137790.htm
CentOS 7 yum 方式快速安装 MongoDB http://www.linuxidc.com/Linux/2016-11/137679.htm
MongoDB 的查询操作 http://www.linuxidc.com/Linux/2016-10/136581.htm
在 Azure 虚拟机上快速搭建 MongoDB 集群 http://www.linuxidc.com/Linux/2017-09/146778.htm
MongoDB 复制集原理 http://www.linuxidc.com/Linux/2017-09/146670.htm
MongoDB 3.4 远程连接认证失败 http://www.linuxidc.com/Linux/2017-06/145070.htm
Ubuntu 16.04 中安装 MongoDB3.4 数据库系统 http://www.linuxidc.com/Linux/2017-07/145526.htm
MongoDB 权威指南第 2 版 PDF 完整带书签目录 下载见 http://www.linuxidc.com/Linux/2016-12/138253.htm
MongoDB 的详细介绍:请点这里
MongoDB 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-12/149905.htm