如何获得在连接字符串在C#中指定的mongo数据库
1个回答
推荐于2016-11-13 · 知道合伙人金融证券行家
关注
展开全部
public sealed class Customer
{
[MongoId]
public string CustomerID { get; set; }
public string CustomerName { get; set; }
public string ContactName { get; set; }
public string Address { get; set; }
public string PostalCode { get; set; }
public string Tel { get; set; }
}
说明:这就是一个简单的类,而且代码中的[MongoId]也是可以不要的(这个后面再说)。
在操作数据库之前,我要说明一下:MongoDB在使用前,并不要求您事先创建好相应的数据库,设计数据表结构!
在MongoDB中,没有【表】的概念,取而代之的是【集合】,也没有【数据记录】的概念,取而代之的是【文档】,我们可以把【文档】理解成一个【对象】,任意的对象,甚至可以有复杂的嵌套层次。
因此,我们不用再写代码从【数据表字段】到C#类的【属性,字段】的转换了,现在直接就可以读写整个对象了。
而且MongoDB不支持Join操作,所以,如果有【关联】操作,就需要你自己来处理。
再来定义二个变量:
private static readonly string _connectionString = "Server=127.0.0.1";
private static readonly string _dbName = "MyNorthwind";
新增记录
public void Insert(Customer customer)
{
customer.CustomerID = Guid.NewGuid().ToString("N");
// 首先创建一个连接
using( Mongo mongo = new Mongo(_connectionString) ) {
// 打开连接
mongo.Connect();
// 切换到指定的数据库
var db = mongo.GetDatabase(_dbName);
// 根据类型获取相应的集合
var collection = db.GetCollection<Customer>();
// 向集合中插入对象
collection.Insert(customer);
}
}
上面的代码中,每一行都有注释,这里就不再解释了。
删除记录
public void Delete(string customerId)
{
using( Mongo mongo = new Mongo(_connectionString) ) {
mongo.Connect();
var db = mongo.GetDatabase(_dbName);
var collection = db.GetCollection<Customer>();
// 从集合中删除指定的对象
collection.Remove(x => x.CustomerID == customerId);
}
}
更新记录
public void Update(Customer customer)
{
using( Mongo mongo = new Mongo(_connectionString) ) {
mongo.Connect();
var db = mongo.GetDatabase(_dbName);
var collection = db.GetCollection<Customer>();
// 更新对象
collection.Update(customer, (x => x.CustomerID == customer.CustomerID));
}
}
获取记录列表
public List<Customer> GetList(string searchWord, PagingInfo pagingInfo)
{
using( Mongo mongo = new Mongo(_connectionString) ) {
mongo.Connect();
var db = mongo.GetDatabase(_dbName);
var collection = db.GetCollection<Customer>();
// 先创建一个查询
var query = from customer in collection.Linq()
select customer;
// 增加查询过滤条件
if( string.IsNullOrEmpty(searchWord) == false )
query = query.Where(c => c.CustomerName.Contains(searchWord) || c.Address.Contains(searchWord));
// 先按名称排序,再返回分页结果.
return query.OrderBy(x => x.CustomerName).GetPagingList<Customer>(pagingInfo);
}
}
获取单个对象
public Customer GetById(string customerId)
{
using( Mongo mongo = new Mongo(_connectionString) ) {
mongo.Connect();
var db = mongo.GetDatabase(_dbName);
var collection = db.GetCollection<Customer>();
// 查询单个对象
return collection.FindOne(x => x.CustomerID == customerId);
}
}
{
[MongoId]
public string CustomerID { get; set; }
public string CustomerName { get; set; }
public string ContactName { get; set; }
public string Address { get; set; }
public string PostalCode { get; set; }
public string Tel { get; set; }
}
说明:这就是一个简单的类,而且代码中的[MongoId]也是可以不要的(这个后面再说)。
在操作数据库之前,我要说明一下:MongoDB在使用前,并不要求您事先创建好相应的数据库,设计数据表结构!
在MongoDB中,没有【表】的概念,取而代之的是【集合】,也没有【数据记录】的概念,取而代之的是【文档】,我们可以把【文档】理解成一个【对象】,任意的对象,甚至可以有复杂的嵌套层次。
因此,我们不用再写代码从【数据表字段】到C#类的【属性,字段】的转换了,现在直接就可以读写整个对象了。
而且MongoDB不支持Join操作,所以,如果有【关联】操作,就需要你自己来处理。
再来定义二个变量:
private static readonly string _connectionString = "Server=127.0.0.1";
private static readonly string _dbName = "MyNorthwind";
新增记录
public void Insert(Customer customer)
{
customer.CustomerID = Guid.NewGuid().ToString("N");
// 首先创建一个连接
using( Mongo mongo = new Mongo(_connectionString) ) {
// 打开连接
mongo.Connect();
// 切换到指定的数据库
var db = mongo.GetDatabase(_dbName);
// 根据类型获取相应的集合
var collection = db.GetCollection<Customer>();
// 向集合中插入对象
collection.Insert(customer);
}
}
上面的代码中,每一行都有注释,这里就不再解释了。
删除记录
public void Delete(string customerId)
{
using( Mongo mongo = new Mongo(_connectionString) ) {
mongo.Connect();
var db = mongo.GetDatabase(_dbName);
var collection = db.GetCollection<Customer>();
// 从集合中删除指定的对象
collection.Remove(x => x.CustomerID == customerId);
}
}
更新记录
public void Update(Customer customer)
{
using( Mongo mongo = new Mongo(_connectionString) ) {
mongo.Connect();
var db = mongo.GetDatabase(_dbName);
var collection = db.GetCollection<Customer>();
// 更新对象
collection.Update(customer, (x => x.CustomerID == customer.CustomerID));
}
}
获取记录列表
public List<Customer> GetList(string searchWord, PagingInfo pagingInfo)
{
using( Mongo mongo = new Mongo(_connectionString) ) {
mongo.Connect();
var db = mongo.GetDatabase(_dbName);
var collection = db.GetCollection<Customer>();
// 先创建一个查询
var query = from customer in collection.Linq()
select customer;
// 增加查询过滤条件
if( string.IsNullOrEmpty(searchWord) == false )
query = query.Where(c => c.CustomerName.Contains(searchWord) || c.Address.Contains(searchWord));
// 先按名称排序,再返回分页结果.
return query.OrderBy(x => x.CustomerName).GetPagingList<Customer>(pagingInfo);
}
}
获取单个对象
public Customer GetById(string customerId)
{
using( Mongo mongo = new Mongo(_connectionString) ) {
mongo.Connect();
var db = mongo.GetDatabase(_dbName);
var collection = db.GetCollection<Customer>();
// 查询单个对象
return collection.FindOne(x => x.CustomerID == customerId);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询