ASP.NET MongoDB数据库操作类

本文涉及的产品
云数据库 MongoDB,独享型 2核8GB
推荐场景:
构建全方位客户视图
简介: 1、Web.config文件中配置数据库连接信息,如下代码: 2、MongoDBHelper操作类,如下代码:using System;using System.

1、Web.config文件中配置数据库连接信息,如下代码:

<appSettings>
    <!--连接MongoDB数据库连接字符串开始-->
    <add key="MongoIP" value="192.168.33.162" />
    <add key="MongoDatabase" value="ADS5_HNXY" />
    <!--MongoDB集群名称,单台MongoDB时请注释掉下面行的配置-->
    <!--<add key="ReplicaSetName" value="atrepl"/>-->
    <add key="MongoUser" value=""/>
    <add key="MongoPassword" value=""/>
    <!--连接MongoDB数据库连接字符串结束 -->
</appSettings>


2、MongoDBHelper操作类,如下代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using MongoDB.Bson;
using MongoDB.Driver;
using MongoDB.Driver.Builders;
using MongoDB.Driver.GridFS;
using MongoDB.Driver.Linq;
using AT.Business.IDAO;
using AT.Business.DAL;
using AT_DataShiftService;


namespace BAL.DBHelper
{
    /// <summary>
    /// MongoDB数据库操作类
    /// </summary>
    public class MongoData
    {


        #region 属性列表


        private static string ip = System.Configuration.ConfigurationManager.AppSettings["MongoIP"];
        private static string dbname = System.Configuration.ConfigurationManager.AppSettings["MongoDatabase"];
        private static string user = System.Configuration.ConfigurationManager.AppSettings["MongoUser"];
        private static string pwd = System.Configuration.ConfigurationManager.AppSettings["MongoPassword"];
        private static string myReplicaSetName = System.Configuration.ConfigurationManager.AppSettings["ReplicaSetName"];


        private static ReadPreference myReadPreference = ReadPreference.SecondaryPreferred;


        //两个不同的表名
        private const string _ADS5 = "ads5";
        private const string _POWERPARAMETERS = "PowerParameters";


        private static AT_System_IDAO systemidao = new AT_System_Dal();


        #endregion


        #region MongoDB权限认证


        /// <summary>
        ///  MongoDB权限认证
        /// </summary>
        /// <returns></returns>
        public static MongoDatabase getDatabase()
        {
            MongoClientSettings setting = new MongoClientSettings();
            if (!string.IsNullOrEmpty(user) && !string.IsNullOrEmpty(pwd))
            {
                //Logger.Log.Info("MongoDB开启权限访问 " + user + ":" + pwd);
                List<MongoCredential> lstCredential = new List<MongoCredential>();
                lstCredential.Add(MongoCredential.CreateCredential(dbname, user, pwd));
                setting.Credentials = lstCredential;
            }
            setting.Server = new MongoServerAddress(ip);
            if (!string.IsNullOrEmpty(myReplicaSetName))
            {
                //Logger.Log.Info("MongoDB开启集群模式 " + myReplicaSetName);
                setting.ConnectionMode = ConnectionMode.ReplicaSet;
                setting.ReplicaSetName = myReplicaSetName;
                setting.ReadPreference = myReadPreference;
            }
            //MongoClient client = new MongoClient(QJBL.MongoDBConn);
            var client = new MongoClient(setting);
            MongoServer server = client.GetServer();
            MongoDatabase database = server.GetDatabase(dbname);
            return database;
        }


        #endregion


        #region 获取MySQL中对应表具列表信息 2017-05-17


        /// <summary>
        ///  获取MySQL中对应表具列表信息
        /// </summary>
        /// <returns></returns>
        public static DataTable GetMeterList()
        {
            return systemidao.GetMeterList();
        }


        #endregion


        #region 获取每个整点需要上传的表具读数 2017-05-17


        /// <summary>
        /// 获取每个整点需要上传的表具读数
        /// </summary>
        /// <param name="datetime"></param>
        /// <returns></returns>
        public static DataTable AT_Up_EnergyValue4WJW(string datetime)
        {
            DataTable dt = GetMeterList();
            DataTable newDT = new DataTable();
            newDT.Columns.Add("BuildID", typeof(string));
            newDT.Columns.Add("CollectionID", typeof(string));
            newDT.Columns.Add("MeterID", typeof(string));
            newDT.Columns.Add("EnergyValue", typeof(double));
            foreach (DataRowView drv in dt.DefaultView)
            {
                DataRow row = newDT.NewRow();
                if (drv["F_MeasureClassify"].ToString() == "04" || drv["F_MeasureClassify"].ToString() == "14")
                {
                    //从MongoDB中的PowerParameters中取数
                    row["BuildID"] = drv["BuildID"].ToString();
                    row["CollectionID"] = drv["CollectionID"].ToString();
                    row["MeterID"] = drv["MeterID"].ToString();
                    double rawValue = GetDataFromPowerParameters(drv["F_MeterID"].ToString(), DateTime.Parse(datetime), drv["F_ValueType"].ToString());
                    //这里去除的可能是负数,要做绝对值转换
                    double absValue = Math.Abs(rawValue);
                    row["EnergyValue"] = double.Parse(drv["F_Ratio"].ToString()) * absValue * 0.0036;
                    WriteLog(drv["F_MeterID"].ToString() + "\t" + datetime + "\t" + (double.Parse(drv["F_Ratio"].ToString()) * absValue * 0.0036) + "\r");
                    newDT.Rows.Add(row);
                }
                else
                {
                    //从MongoDB中的ADS5中取数
                    row["BuildID"] = drv["BuildID"].ToString();
                    row["CollectionID"] = drv["CollectionID"].ToString();
                    row["MeterID"] = drv["MeterID"].ToString();
                    double rawValue = GetDataFromADS5(drv["F_TagName"].ToString(), DateTime.Parse(datetime));


                    double absValue = Math.Abs(rawValue);
                    row["EnergyValue"] = double.Parse(drv["F_Ratio"].ToString()) * absValue;
                    WriteLog(drv["F_TagName"].ToString() + "\t" + datetime + "\t" + double.Parse(drv["F_Ratio"].ToString()) * absValue + "\r");
                    newDT.Rows.Add(row);
                }
            }
            return newDT;
        }


        #endregion


        #region 当F_MeasureClassify不为‘04’和‘14’时,从ADS5表中获取表头示数 2017-08-03


        /// <summary>
        /// F_CaclType = 0 ,从ADS5表中获取数据
        /// </summary>
        /// <param name="TagName"></param>
        /// <param name="DateTime"></param>
        /// <returns></returns>
        public static double GetDataFromADS5(string TagName, DateTime DateTime)
        {
            MongoDatabase db = MongoData.getDatabase();
            //获得Users集合,如果数据库中没有,先新建一个
            MongoCollection col = db.GetCollection(_ADS5);


            var query = Query.And(
            Query.EQ("TagName", TagName),
            Query.EQ("DateTime", DateTime)
            );
            List<BsonDocument> documents = col.FindAs<BsonDocument>(query).ToList();
            //做异常处理
            if (documents.Count != 0)
            {
                BsonElement element = documents[0].GetElement("Value");
                return double.Parse(element.Value.ToString());
            }
            else
            {
                //直至可以获取到上一个有数据的时刻 2017-08-03
                int index = 0;
                do
                {
                    index++;
                    DateTime NewDateTime = DateTime.AddHours(-1 * index);
                    query = Query.And(
                        Query.EQ("TagName", TagName),
                        Query.EQ("DateTime", NewDateTime)
                     );
                    documents = col.FindAs<BsonDocument>(query).ToList();
                } while (documents.Count == 0);


                BsonElement element = documents[0].GetElement("Value");
                return double.Parse(element.Value.ToString());
            }
        }


        #endregion


        #region 当F_MeasureClassify为‘04’或‘14’时,从PowerParameters表中获取表头示数 2017-08-03


        /// <summary>
        /// 从PowerParameters表中获取数据
        /// </summary>
        /// <param name="TagName"></param>
        /// <param name="DateTime"></param>
        /// <returns></returns>
        public static double GetDataFromPowerParameters(string MeterID, DateTime DateTime, string ValueType)
        {
            MongoDatabase db = MongoData.getDatabase();
            //获得Users集合,如果数据库中没有,先新建一个
            MongoCollection col = db.GetCollection(_POWERPARAMETERS);
            var query = Query.And(
             Query.EQ("MeterID", MeterID),
             Query.EQ("DateTime", DateTime)
             );
            List<BsonDocument> documents = col.FindAs<BsonDocument>(query).ToList();
            //做异常处理
            if (documents.Count != 0)
            {
                BsonElement element = documents[0].GetElement(ValueType);
                return double.Parse(element.Value.ToString());
            }
            else
            {
                //直至可以获取到上一个有数据的时刻 2017-08-03
                int index = 0;
                do
                {
                    index ++;
                    DateTime NewDateTime = DateTime.AddHours(-1 * index);
                    query = Query.And(
                         Query.EQ("MeterID", MeterID),
                         Query.EQ("DateTime", NewDateTime)
                    );
                    documents = col.FindAs<BsonDocument>(query).ToList();
                } while (documents.Count == 0);


                BsonElement element = documents[0].GetElement(ValueType);
                return double.Parse(element.Value.ToString());
            }
        }


        #endregion


        #region 日志记录


        /// <summary>
        /// 
        /// </summary>
        /// <param name="log"></param>
        public static void WriteLog(string log)
        {
            string spath1 = System.AppDomain.CurrentDomain.BaseDirectory + @"\GetInterupt.Log";
            string spath = System.AppDomain.CurrentDomain.BaseDirectory + @"\" + DateTime.Now.ToString("yyyy") + @"\GetInterupt" + DateTime.Now.ToString("MM") + ".Log";
            if (!FileC.IsExistFile(spath))
            {
                FileC.CreateDirectory(FileC.GetDirectoryName(spath));
                FileC.CreateFile(spath);
                FileC.WriteText(spath1, "");
            }
            FileC.AppendText(spath, log + "\r\n");
            FileC.AppendText(spath1, log + "\r\n");
        }

        #endregion

    }
}



    

相关实践学习
MongoDB数据库入门
MongoDB数据库入门实验。
快速掌握 MongoDB 数据库
本课程主要讲解MongoDB数据库的基本知识,包括MongoDB数据库的安装、配置、服务的启动、数据的CRUD操作函数使用、MongoDB索引的使用(唯一索引、地理索引、过期索引、全文索引等)、MapReduce操作实现、用户管理、Java对MongoDB的操作支持(基于2.x驱动与3.x驱动的完全讲解)。 通过学习此课程,读者将具备MongoDB数据库的开发能力,并且能够使用MongoDB进行项目开发。 &nbsp; 相关的阿里云产品:云数据库 MongoDB版 云数据库MongoDB版支持ReplicaSet和Sharding两种部署架构,具备安全审计,时间点备份等多项企业能力。在互联网、物联网、游戏、金融等领域被广泛采用。 云数据库MongoDB版(ApsaraDB for MongoDB)完全兼容MongoDB协议,基于飞天分布式系统和高可靠存储引擎,提供多节点高可用架构、弹性扩容、容灾、备份回滚、性能优化等解决方案。 产品详情: https://www.aliyun.com/product/mongodb
相关文章
|
4月前
|
SQL 开发框架 .NET
ASP.NET连接SQL数据库:详细步骤与最佳实践指南ali01n.xinmi1009fan.com
随着Web开发技术的不断进步,ASP.NET已成为一种非常流行的Web应用程序开发框架。在ASP.NET项目中,我们经常需要与数据库进行交互,特别是SQL数据库。本文将详细介绍如何在ASP.NET项目中连接SQL数据库,并提供最佳实践指南以确保开发过程的稳定性和效率。一、准备工作在开始之前,请确保您
384 3
|
2月前
|
存储 NoSQL MongoDB
.NET MongoDB数据仓储和工作单元模式封装
.NET MongoDB数据仓储和工作单元模式封装
59 15
|
6月前
|
SQL 开发框架 数据库
".NET开发者的超能力:AgileEAS.NET ORM带你穿越数据库的迷宫,让数据操作变得轻松又神奇!"
【8月更文挑战第16天】AgileEAS.NET是面向.NET平台的企业应用开发框架,核心功能包括数据关系映射(ORM),允许以面向对象方式操作数据库,无需编写复杂SQL。通过继承`AgileEAS.Data.Entity`创建实体类对应数据库表,利用ORM简化数据访问层编码。支持基本的CRUD操作及复杂查询如条件筛选、排序和分页,并可通过导航属性实现多表关联。此外,提供了事务管理功能确保数据一致性。AgileEAS.NET的ORM简化了数据库操作,提升了开发效率和代码可维护性。
65 5
|
3月前
|
数据库 C# 开发者
ADO.NET连接到南大通用GBase 8s数据库
ADO.NET连接到南大通用GBase 8s数据库
|
3月前
|
存储 缓存 NoSQL
2款使用.NET开发的数据库系统
2款使用.NET开发的数据库系统
|
3月前
|
数据库连接 数据库 C#
Windows下C# 通过ADO.NET方式连接南大通用GBase 8s数据库(上)
Windows下C# 通过ADO.NET方式连接南大通用GBase 8s数据库(上)
|
3月前
|
数据库连接 数据库 C#
Windows下C# 通过ADO.NET方式连接南大通用GBase 8s数据库(下)
本文接续前文,深入讲解了在Windows环境下使用C#和ADO.NET操作南大通用GBase 8s数据库的方法。通过Visual Studio 2022创建项目,添加GBase 8s的DLL引用,并提供了详细的C#代码示例,涵盖数据库连接、表的创建与修改、数据的增删查改等操作,旨在帮助开发者提高数据库管理效率。
|
4月前
|
SQL 开发框架 .NET
ASP连接SQL数据库:从基础到实践
随着互联网技术的快速发展,数据库与应用程序之间的连接成为了软件开发中的一项关键技术。ASP(ActiveServerPages)是一种在服务器端执行的脚本环境,它能够生成动态的网页内容。而SQL数据库则是一种关系型数据库管理系统,广泛应用于各类网站和应用程序的数据存储和管理。本文将详细介绍如何使用A
125 3
|
4月前
|
存储 NoSQL API
.NET NoSQL 嵌入式数据库 LiteDB 使用教程
.NET NoSQL 嵌入式数据库 LiteDB 使用教程~
141 0
|
4月前
|
SQL 开发框架 .NET
ASP.NET连接SQL数据库:实现过程与关键细节解析an3.021-6232.com
随着互联网技术的快速发展,ASP.NET作为一种广泛使用的服务器端开发技术,其与数据库的交互操作成为了应用开发中的重要环节。本文将详细介绍在ASP.NET中如何连接SQL数据库,包括连接的基本概念、实现步骤、关键代码示例以及常见问题的解决方案。由于篇幅限制,本文不能保证达到完整的2000字,但会确保

热门文章

最新文章