专业网站建设品牌,十四年专业建站经验,服务6000+客户--广州京杭网络
免费热线:400-683-0016      微信咨询  |  联系我们

C# / .Net Core 访问MongoDb库

当前位置:网站建设 > 技术支持
资料来源:网络整理       时间:2023/2/14 0:43:44       共计:3604 浏览

话不多说直接上代码

连接字符串:

{ "AppSettings": { "mongodb": "mongodb://用户名:密码@IP地址:端口号" }
}

主体代码:

using ABCDEFG.Config;
using MongoDB.Driver;
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Text;

namespace Mongodb
{
    public class MongoContext
    {
        public MongoContext()
        {
            Client = new MongoClient(ABCDEFG.GetAppSetting("mongodb"));
        }

        public MongoContext(string connectionName)
        {
            Client = new MongoClient(MengTConfig.GetAppSetting(connectionName));
        }

        private MongoClient Client { get; set; }

        private IMongoDatabase DataBase { get => Client.GetDatabase("MengTLog"); }

        public IMongoCollection<T> DbSet<T>() where T : IMongoModel => DataBase.GetCollection<T>("MengTLog.Logger");

    }

    public static class MongoExtend
    {
        public static void Add<T>(this IMongoCollection<T> collenction, T Model) where T : IMongoModel
                  => collenction.InsertOne(Model);

        public static void AddList<T>(this IMongoCollection<T> collenction, List<T> Model) where T : IMongoModel
                 => collenction.InsertMany(Model);

        /// <summary>
        /// 查找第一个
        /// </summary>
        public static T FirstOrDefault<T>(this IMongoCollection<T> collenction,Expression<Func<T, bool>> expression) where T : IMongoModel
        {
            if (expression == null) { throw new ArgumentNullException("参数无效"); }
            return collenction.Find(expression).FirstOrDefault();
        }

        /// <summary>
        /// 查找符合数据列表
        /// </summary>
        public static List<T> FindToList<T>(this IMongoCollection<T> collenction, Expression<Func<T, bool>> expression) where T : IMongoModel
        {
            if (expression == null) { throw new ArgumentNullException("参数无效"); }
            return collenction.Find(expression).ToList();
        }

        /// <summary>
        /// 删除全部匹配数据
        /// </summary>
        public static void Delete<T>(this IMongoCollection<T> collenction, Expression<Func<T, bool>> expression) where T : IMongoModel
        {
            if (expression == null) { throw new ArgumentNullException("参数无效"); }
            collenction.DeleteManyAsync(expression);
        }


        /// <summary>
        /// 删除一个
        /// </summary>
        public static void DeleteOne<T>(this IMongoCollection<T> collenction, Expression<Func<T, bool>> expression) where T : IMongoModel
        {
            if (expression == null) { throw new ArgumentNullException("参数无效"); }
            collenction.DeleteOneAsync(expression);
        }
    }
}

IMongoModel:

using MongoDB.Bson;
using System;
using System.Collections.Generic;
using System.Text;

namespace Mongodb
{
    public partial class IMongoModel
    {
        /// <summary>
        /// 基础ID
        /// </summary>
        public ObjectId _id { get; set; }
    }
}

值得注意的是:需引用MongoDB.BSon与MongoDB.Driver

VS2017若在引用包后,还是无法找到命名空间,重启VS即可。

ABCDEFG.GetAppSetting("mongodb"));读取配置文件

版权说明:
本网站凡注明“广州京杭 原创”的皆为本站原创文章,如需转载请注明出处!
本网转载皆注明出处,遵循行业规范,如发现作品内容版权或其它问题的,请与我们联系处理!
欢迎扫描右侧微信二维码与我们联系。
·上一条:SQL中实现SPLIT函数几种方法总结 | ·下一条:电商项目实战(架构七)——Mongodb实现文档操作

Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有    粤ICP备16019765号 

广州京杭网络科技有限公司 版权所有