1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543 |
- using System;
- using System.Data;
- using System.Text;
- using System.Data.SqlClient;
- using System.Collections.Generic;
- using LYFZ.Helper;
- using System.Reflection;
- using System.Collections.Concurrent;
- using System.Linq.Expressions;
- using System.Collections;
- using System.Linq;
- using LYFZ.WinAPI;
- using System.Dynamic;
- using Newtonsoft.Json;
- namespace LYFZ.WanYuKeFuData.DAL
- {
- /// <summary>
- /// 数据操作抽象基类
- /// </summary>
- public abstract class BaseDataOperate<T>
- {
- #region 属性
- LYFZ.WanYuKeFuData.Model.DBConnection _DBConn;
- /// <summary>
- /// 当前数据库连接对象
- /// </summary>
- protected LYFZ.WanYuKeFuData.Model.DBConnection DBConn
- {
- get
- {
- return this._DBConn;
- }
- set
- {
- this._DBConn = value;
- }
- }
- /// <summary>
- /// 获取当前新的数据表模型对象
- /// </summary>
- public T ObjModel
- {
- get
- {
- return Activator.CreateInstance<T>();
- }
- }
- /// <summary>
- /// 数据表名
- /// </summary>
- public string TableName
- {
- get{
- return "tb_"+typeof(T).Name;
- }
- // set;
- }
-
- string _TableFieldNameStr = "";
- /// <summary>
- /// 数据表字段名字符串,字段名以“,”号分隔
- /// </summary>
- public string TableFieldNameStr
- {
- get
- {
- if (this._TableFieldNameStr.Trim() == "")
- {
- foreach (string fieldName in this.TableFieldNames)
- {
- if (this._TableFieldNameStr.Trim() == "")
- {
- this._TableFieldNameStr += "[" + fieldName + "]";
- }
- else
- {
- this._TableFieldNameStr += ",[" + fieldName + "]";
- }
- }
- }
- if (this._TableFieldNameStr.Trim() == "")
- {
- this._TableFieldNameStr = "*";
- }
- return this._TableFieldNameStr;
- }
- set { this._TableFieldNameStr = value; }
- }
- /// <summary>
- /// 数据表字段名数组
- /// </summary>
- public string[] TableFieldNames
- {
- get
- {
- System.Reflection.PropertyInfo[] propertyInfos = this.PropertyInfos;
- List<string> fieldNameList = new List<string>();
- foreach (System.Reflection.PropertyInfo propertyInfo in propertyInfos)
- {
- if (!propertyInfo.IsSpecialName)
- {
- fieldNameList.Add(propertyInfo.Name);
- }
- }
- return fieldNameList.ToArray();
- }
- }
- /// <summary>
- /// 获取要查询的当前表的字段集合字符串 用","号分隔
- /// </summary>
- /// <param name="filters"></param>
- /// <param name="isContain">如果为true 表示只返回 filters 集合中的字段 如果为false 表示返回排除 filters 集合中的字段以外的所有字段</param>
- /// <returns></returns>
- public string GetQueryTableFieldNames(string[] filters = null, bool isContain = false)
- {
- List<string> tempFilters = new List<string>();
- if (filters != null)
- {
- tempFilters.AddRange(filters);
- }
- System.Reflection.PropertyInfo[] propertyInfos = this.PropertyInfos;
- string fieldNames = "";
- for (int i = 0; i < propertyInfos.Length; i++)
- {
- if (!propertyInfos[i].IsSpecialName)
- {
- System.Reflection.PropertyInfo propertyInfo = propertyInfos[i];
- if ((!tempFilters.Contains(propertyInfo.Name) && !isContain) || (tempFilters.Contains(propertyInfo.Name) && isContain))
- {
- if (fieldNames.Trim().Length <= 0)
- {
- fieldNames = "[" + propertyInfo.Name + "]";
- }
- else
- {
- fieldNames += ",[" + propertyInfo.Name + "]";
- }
- }
- }
- }
- return fieldNames;
- }
- /// <summary>
- /// 获取属性集合
- /// </summary>
- public System.Reflection.PropertyInfo[] PropertyInfos
- {
- get
- {
- List<System.Reflection.PropertyInfo> list = new List<System.Reflection.PropertyInfo>();
- System.Reflection.PropertyInfo[] infos = ObjModel.GetType().GetProperties();
- foreach (System.Reflection.PropertyInfo info in infos)
- {
- if (info.CanWrite)
- {
- list.Add(info);
- }
- }
- return list.ToArray();
- }
- }
- #endregion
- #region 检查记录
- /// <summary>
- /// 是否存在该记录
- /// </summary>
- public bool Exists(int id)
- {
- return this.Exists("ID", id);
- }
- /// <summary>
- /// 根据筛选条件判断是否存在该记录
- /// </summary>
- /// <param name="filterFieldName">筛选字段名</param>
- /// <param name="filterValue">筛选值</param>
- /// <returns></returns>
- public bool Exists(string filterFieldName, object filterValue)
- {
- if (filterFieldName != "" && filterValue != null)
- {
- StringBuilder strSql = new StringBuilder();
- strSql.Append("select count(1) from " + this.TableName + " ");
- strSql.Append(" where 1=1 and " + filterFieldName + "=@" + filterFieldName);
- SqlParameter[] parameters = {
- new SqlParameter("@"+filterFieldName, filterValue)
- };
- return SQLHelper.Exists(strSql.ToString(), this.DBConn.DBConnectionString, parameters);
- }
- else
- {
- return false;
- }
- }
- /// <summary>
- /// 根据筛选条件判断是否存在该记录
- /// </summary>
- /// <param name="filterFieldName">筛选字段名</param>
- /// <param name="filterValue">筛选值</param>
- /// <returns></returns>
- public bool Exists(string whereString)
- {
- if (whereString.Trim().Length > 0)
- {
- StringBuilder strSql = new StringBuilder();
- strSql.Append("select count(1) from " + this.TableName + " ");
- strSql.Append(" where " + whereString);
- return SQLHelper.Exists(strSql.ToString(), this.DBConn.DBConnectionString);
- }
- else
- {
- return false;
- }
- }
- /// <summary>
- /// 判断是否存某个字段
- /// </summary>
- /// <param name="columnName">列名称</param>
- /// <returns>是否存在</returns>
- public bool ColumnExists(string columnName)
- {
- return SQLHelper.ColumnExists(this.TableName, columnName, this.DBConn.DBConnectionString);
- }
- #endregion
- #region 公共方法
- /// <summary>
- /// 获取最大ID()
- /// </summary>
- /// <returns></returns>
- public int GetMaxID()
- {
- return this.GetMaxID("ID");
- }
- /// <summary>
- /// 获取某字段最大值(获取字段必须为数字类型)
- /// </summary>
- /// <param name="FieldName">字段名</param>
- /// <returns></returns>
- public int GetMaxID(string FieldName)
- {
- return SQLHelper.GetMaxID(FieldName, this.TableName, this.DBConn.DBConnectionString);
- }
- #endregion
- #region 判断方法
- /// <summary>
- /// 获取是否为忽略字段 返回 true 表示忽略 false 不忽略
- /// </summary>
- /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
- /// <param name="fieldName">要判断的字段名</param>
- /// <returns></returns>
- public bool IsOverlookFiel(string overlookFieldList, string fieldName)
- {
- bool bl = false;
- string[] tempOverlookFieldList = overlookFieldList.Split(',');
- for (int i = 0; i < tempOverlookFieldList.Length; i++)
- {
- if (tempOverlookFieldList[i].Trim().ToLower() == fieldName.Trim().ToLower())
- {
- bl = true;
- break;
- }
- }
- return bl;
- }
- #endregion
- #region 增加数据
- /// <summary>
- /// 增加一条数据
- /// </summary>
- /// <param name="model">Model对象</param>
- /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
- /// <returns></returns>
- public bool Add(T model, string overlookFieldList = "ID")
- {
-
- LYFZ.Helper.CommandInfo comdInfo = this.GetAddCommandInfo(model, overlookFieldList);
- int rows = SQLHelper.ExecuteSql(comdInfo.CommandText, this.DBConn.DBConnectionString, (SqlParameter[])comdInfo.Parameters);
- if (rows > 0)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- /// <summary>
- /// 获取插入数CommandInfo对象
- /// </summary>
- /// <param name="model"></param>
- /// <param name="overlookFieldList">要忽略的字段集合 多个字段名有“,”号分隔</param>
- /// <returns></returns>
- public object GetAddCommandInfoObject(T model, string overlookFieldList = "ID")
- {
- return this.GetAddCommandInfo(model, overlookFieldList);
- }
- /// <summary>
- /// 获取插入数CommandInfo对象
- /// </summary>
- /// <param name="model"></param>
- /// <param name="overlookFieldList">要忽略的字段集合 多个字段名有“,”号分隔</param>
- /// <param name="type"></param>
- /// <returns></returns>
- public LYFZ.Helper.CommandInfo GetAddCommandInfo(T model, string overlookFieldList = "ID", EffentNextType type = EffentNextType.None)
- {
- StringBuilder strSql = new StringBuilder();
- StringBuilder tempFieldNameString = new StringBuilder();
- StringBuilder tempValueVariable = new StringBuilder();
- List<SqlParameter> parameterlist = new List<SqlParameter>();
- for (int i = 0; i < PropertyInfos.Length; i++)
- {
- try
- {
- System.Reflection.PropertyInfo propertyInfo = PropertyInfos[i];
- string tempFieldName = propertyInfo.Name;
- object tempValue = propertyInfo.GetValue(model, null);
- Type tempType = propertyInfo.PropertyType;
- if (!IsOverlookFiel(overlookFieldList, tempFieldName) || (tempFieldName.ToLower() == "id" && tempType == typeof(long)))
- {
- try
- {
- if (tempType.Name == "DateTime")
- {
- if (tempValue.ToString().Contains("0001"))
- {
- tempValue = null;
- }
- try
- {
- DateTime tempTime;
- if (!DateTime.TryParse(tempValue.ToString(), out tempTime))
- {
- tempValue = null;
- }
- else if (tempTime <= LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
- {
- tempValue = null;
- }
- }
- catch
- {
- tempValue = null;
- }
- }
- else if (tempFieldName.ToLower() == "id" && tempType == typeof(long) && (tempValue == null || Convert.ToInt64(tempValue) == 0))
- {
- tempValue = LYFZ.WinAPI.CustomPublicMethod.GenerateId();
- }
- if (tempValue != null)
- {
- tempFieldNameString.Append("" + tempFieldName + ",");
- tempValueVariable.Append("@" + tempFieldName + ",");
- SqlParameter parameter = new SqlParameter("@" + tempFieldName, tempValue);
- parameterlist.Add(parameter);
- }
- }
- catch { }
- }
- }
- catch { }
- }
- //去除结尾多余的“,”
- if (tempFieldNameString.ToString().LastIndexOf(',') == tempFieldNameString.Length - 1)
- {
- tempFieldNameString.Remove(tempFieldNameString.Length - 1, 1);
- }
- //去除结尾多余的“,”
- if (tempValueVariable.ToString().LastIndexOf(',') == tempValueVariable.Length - 1)
- {
- tempValueVariable.Remove(tempValueVariable.Length - 1, 1);
- }
- strSql.Append("insert into " + this.TableName + "(");
- strSql.Append("" + tempFieldNameString.ToString() + ")");
- strSql.Append(" values (");
- strSql.Append("" + tempValueVariable.ToString() + ")");
- strSql.Append(";select @@IDENTITY");
- SqlParameter[] parameters = parameterlist.ToArray();
- return new CommandInfo(strSql.ToString(), parameters, type);
- }
- #endregion
- #region 更新数据
- /// <summary>
- /// 根据筛选字段和SQL筛选运算符号更新数据(内部方法)
- /// </summary>
- /// <param name="model">Model对象</param>
- /// <param name="filterFieldName">筛选字段名称</param>
- /// <param name="operators">SQL筛选运算符号</param>
- /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
- /// <param name="whereStr">Wher条件,当指定条件语句时筛选字段设置无效,不包含“where”关键字 不建义使用此参数</param>
- /// <returns></returns>
- protected bool InsideUpdate(T model, string filterFieldName = "ID", string operators = "=", string overlookFieldList = "ID", string whereStr = null)
- {
-
- LYFZ.Helper.CommandInfo comdInfo = GetUpdateCommandInfo(model, filterFieldName, operators, overlookFieldList, whereStr);
- int rows = SQLHelper.ExecuteSql(comdInfo.CommandText, this.DBConn.DBConnectionString, (SqlParameter[])comdInfo.Parameters);
- if (rows > 0)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- ///// <summary>
- ///// 获取更新数据的UpdateCommandInfo对象 根据筛选字段和SQL筛选运算符号更新数据(内部方法)
- ///// </summary>
- ///// <param name="model">Model对象</param>
- ///// <param name="filterFieldName">筛选字段名称</param>
- ///// <param name="operators">SQL筛选运算符号</param>
- ///// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
- ///// <param name="whereStr">Wher条件,当指定条件语句时筛选字段设置无效,不包含“where”关键字 不建义使用此参数</param>
- //public LYFZ.Helper.CommandInfo GetUpdateCommandInfoObject(T model, string filterFieldName = "ID", string operators = "=", string overlookFieldList = "ID", string whereStr = null)
- //{
- // return this.GetUpdateCommandInfo(model, filterFieldName, operators, overlookFieldList, whereStr);
- //}
- /// <summary>
- /// 获取更新数据的UpdateCommandInfo对象 根据筛选字段和SQL筛选运算符号更新数据(内部方法)
- /// </summary>
- /// <param name="model">Model对象</param>
- /// <param name="filterFieldName">筛选字段名称</param>
- /// <param name="operators">SQL筛选运算符号</param>
- /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
- /// <param name="whereStr">Wher条件,当指定条件语句时筛选字段设置无效,不包含“where”关键字 不建义使用此参数</param>
- /// <param name="type"></param>
- public LYFZ.Helper.CommandInfo GetUpdateCommandInfo(T model, string filterFieldName = "ID", string operators = "=", string overlookFieldList = "ID", string whereStr = null, EffentNextType type = EffentNextType.None)
- {
- StringBuilder strSql = new StringBuilder();
- strSql.Append("update " + this.TableName + " set ");
- List<SqlParameter> parameterlist = new List<SqlParameter>();
- overlookFieldList += "," + filterFieldName;
- for (int i = 0; i < PropertyInfos.Length; i++)
- {
- try
- {
- System.Reflection.PropertyInfo propertyInfo = PropertyInfos[i];
- string tempFieldName = propertyInfo.Name;//字段名
- object tempValue = propertyInfo.GetValue(model, null);//对应字段值
- //如果字段名不为忽略字段则进行处理
- if (!IsOverlookFiel(overlookFieldList, tempFieldName))
- {
- try
- {
- if (tempValue.GetType() == typeof(DateTime))
- {
- DateTime tempTime;
- try
- {
- if (!DateTime.TryParse(tempValue.ToString(), out tempTime))
- {
- tempValue = null;
- }
- else if (tempTime <= LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
- {
- tempValue = null;
- }
- else if (tempTime.Year == Convert.ToDateTime("0001-01-01").Year || tempTime.Year == Convert.ToDateTime("1753-01-01").Year)
- {
- tempValue = null;
- }
- }
- catch { tempValue = null; }
- }
- }
- catch { }
- strSql.Append("" + tempFieldName + "=@" + tempFieldName + ",");
- SqlParameter parameter = new SqlParameter("@" + tempFieldName, tempValue);
- parameterlist.Add(parameter);
- }
- }
- catch { }
- }
- //去除结尾多余的“,”
- if (strSql.ToString().LastIndexOf(',') == strSql.Length - 1)
- {
- strSql.Remove(strSql.Length - 1, 1);
- }
- if (whereStr == null)
- {
- if (filterFieldName != "" && operators != "")
- {
- try
- {
- object FilterFieldValue = LYFZ.WinAPI.CustomPublicMethod.GetPropertyValue(model, filterFieldName);// model.GetType().GetProperty(filterFieldName).GetValue(model, null);
- strSql.Append(" where " + filterFieldName + operators + "@" + filterFieldName);
- parameterlist.Add(new SqlParameter("@" + filterFieldName, FilterFieldValue));
- }
- catch
- {
- }
- }
- }
- else
- {
- strSql.Append(" where 1=1 and (" + whereStr + ")");
- }
- SqlParameter[] parameters = parameterlist.ToArray();
- return new CommandInfo(strSql.ToString(), parameters, type);
- }
- /// <summary>
- /// 根据筛选字段和SQL筛选运算符号更新数据
- /// </summary>
- /// <param name="model">Model对象</param>
- /// <param name="filterFieldName">筛选字段名称</param>
- /// <param name="operators">SQL筛选运算符号</param>
- /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
- /// <returns></returns>
- public bool Update(T model, string filterFieldName = "ID", string operators = "=", string overlookFieldList = "ID")
- {
- return InsideUpdate(model, filterFieldName, operators, overlookFieldList);
- }
- /// <summary>
- /// 根据Wher条件更新数据 不建义使用此方法
- /// </summary>
- /// <param name="model">Model对象</param>
- /// <param name="whereStr">Wher条件,不包含“where”关键字</param>
- /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
- /// <returns></returns>
- public bool Update(T model, string whereStr, string overlookFieldList = "ID")
- {
- return InsideUpdate(model, overlookFieldList: overlookFieldList, whereStr: whereStr);
- }
- #endregion
- #region 删除数据
- /// <summary>
- /// 根据筛选字段或where条件删除数据
- /// </summary>
- /// <param name="filterFieldName">筛选字段名</param>
- /// <param name="operators">筛选SQL运算符</param>
- /// <param name="filterValue">筛选值</param>
- /// <param name="whereStr">Wher条件,不包含“where”关键字</param>
- /// <returns></returns>
- protected bool InsideDelete(string filterFieldName = "ID", string operators = "=", object filterValue = null, string whereStr = null)
- {
-
- LYFZ.Helper.CommandInfo comdInfo = GetDeleteCommandInfo(filterFieldName, operators, filterValue, whereStr);
- int rows = SQLHelper.ExecuteSql(comdInfo.CommandText, this.DBConn.DBConnectionString, (SqlParameter[])comdInfo.Parameters);
- if (rows > 0)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- ///// <summary>
- ///// 根据筛选字段或where条件删除数据
- ///// </summary>
- ///// <param name="filterFieldName">筛选字段名</param>
- ///// <param name="operators">筛选SQL运算符</param>
- ///// <param name="filterValue">筛选值</param>
- ///// <param name="whereStr">Wher条件,传入条件语句时筛选字段无效不建义使用 不包含“where”关键字</param>
- ///// <returns></returns>
- //public object GetDeleteCommandInfoObject(string filterFieldName = "ID", string operators = "=", object filterValue = null, string whereStr = null)
- //{
- // return this.GetDeleteCommandInfo(filterFieldName, operators, filterValue, whereStr);
- //}
- /// <summary>
- /// 根据筛选字段或where条件删除数据
- /// </summary>
- /// <param name="filterFieldName">筛选字段名</param>
- /// <param name="operators">筛选SQL运算符</param>
- /// <param name="filterValue">筛选值</param>
- /// <param name="whereStr">Wher条件,传入条件语句时筛选字段无效不建义使用 不包含“where”关键字</param>
- /// <param name="type"></param>
- /// <returns></returns>
- public LYFZ.Helper.CommandInfo GetDeleteCommandInfo(string filterFieldName = "ID", string operators = "=", object filterValue = null, string whereStr = null, EffentNextType type = EffentNextType.None)
- {
- if (filterValue == null) { filterValue = ""; }
- List<SqlParameter> parameterlist = new List<SqlParameter>();
- StringBuilder strSql = new StringBuilder();
- strSql.Append("delete from " + this.TableName + " ");
- if (whereStr == null)
- {
- strSql.Append(" where " + filterFieldName + "" + operators + "@" + filterFieldName + "");
- parameterlist.Add(new SqlParameter("@" + filterFieldName, filterValue));
- }
- else
- {
- strSql.Append(" where ID>@ID and (" + whereStr + ")");
- parameterlist.Add(new SqlParameter("@ID", Convert.ToInt32(0)));
- }
- SqlParameter[] parameters = parameterlist.ToArray();
- return new CommandInfo(strSql.ToString(), parameters, type);
- }
- /// <summary>
- /// 删除一条数据
- /// </summary>
- /// <param name="ID">id</param>
- public bool Delete(long ID)
- {
- return this.InsideDelete(filterValue: ID);
- }
- /// <summary>
- /// 删除一条数据
- /// </summary>
- /// <param name="ID">id</param>
- public bool Delete(int ID)
- {
- return this.InsideDelete(filterValue: ID);
- }
- /// <summary>
- /// 根据筛选字段删除数据
- /// </summary>
- /// <param name="filterValue">筛选值</param>
- /// <param name="filterFieldName">筛选字段名</param>
- /// <param name="operators">筛选SQL运算符</param>
- /// <returns></returns>
- public bool Delete(object filterValue, string filterFieldName = "ID", string operators = "=")
- {
- return this.InsideDelete(filterFieldName, operators, filterValue);
- }
- /// <summary>
- /// 根据where条件删除数据 不建义使用此方法
- /// </summary>
- /// <param name="whereStr">Wher条件,不包含“where”关键字</param>
- /// <returns></returns>
- public bool Delete(string whereStr)
- {
- return this.InsideDelete(whereStr: whereStr);
- }
- /// <summary>
- /// 批量删除数据
- /// </summary>
- /// <param name="filterFieldName">筛选字段名</param>
- /// <param name="valueList">值列表,多个值用“,”分隔,字符串值用“'”号包含</param>
- public bool DeleteList(string filterFieldName, string valueList)
- {
- if (filterFieldName != "" && valueList != "")
- {
- StringBuilder strSql = new StringBuilder();
- strSql.Append("delete from " + this.TableName + " ");
- strSql.Append(" where " + filterFieldName + " in (" + valueList + ") ");
- int rows = SQLHelper.ExecuteSql(strSql.ToString(), this.DBConn.DBConnectionString);
- if (rows > 0)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- else
- {
- return false;
- }
- }
- /// <summary>
- /// 按ID列表批量删除数据
- /// </summary>
- /// <param name="idList">ID列表,多个用“,”分隔</param>
- public bool DeleteList(string idList)
- {
- return this.DeleteList("ID", idList);
- }
- #endregion
- #region 查询数据
- public T DataRowToModel(DataRow dr)
- {
- if (dr == null)
- {
- return Activator.CreateInstance<T>();
- }
- Dictionary<string, string> dataInfo = new Dictionary<string, string>();
- dynamic objmatch = new ExpandoObject();
- for (int i = 0; i < dr.Table.Columns.Count; i++)
- {
- string value = dr[dr.Table.Columns[i].ColumnName].ToString();
- if (!string.IsNullOrEmpty(value))
- {
- dataInfo.Add(dr.Table.Columns[i].ColumnName, value);
- }
- }
- objmatch = dataInfo;
- string json = JsonConvert.SerializeObject((object)objmatch);
- return DataRowToModelByEntity(json);
- }
- public T GetModelObjectByEntity(string filterFieldName, object filterValue)
- {
- DataRow dr = GetDataRow(filterFieldName, filterValue);
- Dictionary<string, string> dataInfo = new Dictionary<string, string>();
- if(dr==null)
- {
- return Activator.CreateInstance<T>();
- }
- dynamic objmatch = new ExpandoObject();
- for (int i = 0; i < dr.Table.Columns.Count; i++)
- {
- string value = dr[dr.Table.Columns[i].ColumnName].ToString();
- if (!string.IsNullOrEmpty(value))
- {
- dataInfo.Add(dr.Table.Columns[i].ColumnName, value);
- }
- }
- objmatch = dataInfo;
- string json = JsonConvert.SerializeObject((object)objmatch);
- return DataRowToModelByEntity(json);
- }
- public T DataRowToModelByEntity(int ID)
- {
- DataRow dr = GetDataRow(ID);
- if (dr == null)
- {
- return Activator.CreateInstance<T>();
- }
- Dictionary<string, string> dataInfo = new Dictionary<string, string>();
- dynamic objmatch = new ExpandoObject();
- for (int i = 0; i < dr.Table.Columns.Count; i++)
- {
- string value = dr[dr.Table.Columns[i].ColumnName].ToString();
- if (!string.IsNullOrEmpty(value))
- {
- dataInfo.Add(dr.Table.Columns[i].ColumnName, value);
- }
- }
- objmatch = dataInfo;
- string json = JsonConvert.SerializeObject((object)objmatch);
-
- return DataRowToModelByEntity(json);
- }
- T DataRowToModelByEntity(string json)
- {
- T obj = (T)JsonConvert.DeserializeObject(json, this.ObjModel.GetType());
- return obj;
- }
- /// <summary>
- /// 得到一个Object对象实体
- /// </summary>
- /// <param name="ID"></param>
- /// <returns></returns>
- public T GetModel(long ID)
- {
- return DataRowToModel(GetDataRow(ID));
- }
- /// <summary>
- /// 得到一个Object对象实体
- /// </summary>
- /// <param name="ID"></param>
- /// <returns></returns>
- public T GetModel(int ID)
- {
- return DataRowToModel(GetDataRow(ID));
- }
- /// <summary>
- /// 根据筛选条件获取一条数据Model对象
- /// </summary>
- /// <param name="filterFieldName">筛选条件字段名</param>
- /// <param name="filterValue">值</param>
- /// <returns></returns>
- public T GetModel(string filterFieldName, object filterValue)
- {
- return DataRowToModel(GetDataRow(filterFieldName, filterValue));
- }
- /// <summary>
- /// 根据筛选条件获取一条数据Model对象
- /// </summary>
- /// <param name="filterFieldName">筛选条件字段名</param>
- /// <param name="filterValue">值</param>
- /// <param name="operators">SQL筛选运算符号</param>
- /// <returns></returns>
- public T GetModel(string filterFieldName, object filterValue, string operators)
- {
- return DataRowToModel(GetDataRow(filterFieldName, filterValue, operators));
- }
- /// <summary>
- /// 根据筛选条件获取一条数据Model对象
- /// </summary>
- /// <param name="whereString">筛选条件</param>
- /// <returns></returns>
- public T GetModel(string whereString)
- {
- return DataRowToModel(GetDataRow(whereString));
- }
-
- /// <summary>
- /// 获取一条数据DataRow对象
- /// </summary>
- /// <param name="ID">id</param>
- /// <returns></returns>
- public DataRow GetDataRow(long id)
- {
- return GetDataRow("ID", id);
- }
- /// <summary>
- /// 获取一条数据DataRow对象
- /// </summary>
- /// <param name="ID">id</param>
- /// <returns></returns>
- public DataRow GetDataRow(int id)
- {
- return GetDataRow("ID", id);
- }
- /// <summary>
- /// 根据筛选条件获取一条数据DataRow对象
- /// </summary>
- /// <param name="whereString">筛选条件</param>
- /// <returns></returns>
- public DataRow GetDataRow(string whereString)
- {
- if (whereString.Trim().Length > 0)
- {
- StringBuilder strSql = new StringBuilder();
- strSql.Append("select top 1 " + this.TableFieldNameStr + " from " + this.TableName + " ");
- strSql.Append(" where " + whereString);
- DataSet ds = SQLHelper.Query(strSql.ToString(), this.DBConn.DBConnectionString);
- if (ds.Tables[0].Rows.Count > 0)
- {
- return ds.Tables[0].Rows[0];
- }
- else
- {
- return null;
- }
- }
- else
- {
- return null;
- }
- }
- /// <summary>
- /// 根据筛选条件获取一条数据DataRow对象
- /// </summary>
- /// <param name="filterFieldName">筛选条件字段名</param>
- /// <param name="filterValue">值</param>
- /// <param name="operators">SQL筛选运算符号</param>
- /// <returns></returns>
- public DataRow GetDataRow(string filterFieldName, object filterValue, string operators = "=")
- {
- if (filterFieldName != "" && filterValue != null)
- {
- StringBuilder strSql = new StringBuilder();
- strSql.Append("select top 1 " + this.TableFieldNameStr + " from " + this.TableName + " ");
- strSql.Append(" where 1=1 and " + filterFieldName + "" + operators + "@" + filterFieldName + " ");
- SqlParameter[] parameters = {
- new SqlParameter("@"+filterFieldName, filterValue)
- };
- DataSet ds = SQLHelper.Query(strSql.ToString(), this.DBConn.DBConnectionString, parameters);
- if (ds.Tables[0].Rows.Count > 0)
- {
- return ds.Tables[0].Rows[0];
- }
- else
- {
- return null;
- }
- }
- else
- {
- return null;
- }
- }
- /// <summary>
- /// 根据筛选条件获取一条数据DataRow对象(运算符是“=”)
- /// </summary>
- /// <param name="filterFieldName">筛选条件字段名</param>
- /// <param name="filterValue">值</param>
- /// <returns></returns>
- public DataRow GetDataRow(string filterFieldName, object filterValue)
- {
- return GetDataRow(filterFieldName, filterValue, "=");
- }
- /// <summary>
- /// 得到一个对象实体
- /// </summary>
- public T DataRowToModel(DataRow row, T model)
- {
- if (row != null)
- {
- for (int i = 0; i < PropertyInfos.Length; i++)
- {
- try
- {
- System.Reflection.PropertyInfo propertyInfo = PropertyInfos[i];
- string tempFieldName = propertyInfo.Name;//字段名
- if (row[tempFieldName] != null)
- {
- object tempValue = row[tempFieldName];//对应字段值
- LYFZ.WinAPI.CustomPublicMethod.SetPropertyValue(model, propertyInfo, tempValue);
- }
- }
- catch
- {
- }
- }
- }
- return model;
- }
- /// <summary>
- /// 获得数据列表
- /// </summary>
- /// <param name="strWhere">条件语句 不包含 where 关键字</param>
- /// <param name="filedOrder">SQL排序 如:id desc</param>
- public DataSet GetList(string strWhere, string filedOrder = "ID asc")
- {
- return this.GetList(0, strWhere, filedOrder);
- }
- /// <summary>
- /// 获得全部数据列表
- /// </summary>
- /// <param name="filedOrder">SQL排序 如:id desc</param>
- public DataSet GetAllList(string filedOrder = "ID asc")
- {
- return this.GetList("", filedOrder);
- }
- /// <summary>
- /// 获得全部数据列表
- /// </summary>
- /// <param name="filedOrder">SQL排序 如:id desc</param>
- public List<T> GetAllModelList(string filedOrder = "ID asc")
- {
- DataTable tb = this.GetAllList(filedOrder).Tables[0];
- List<T> modelList = new List<T>();
- foreach (DataRow row in tb.Rows)
- {
- modelList.Add(this.DataRowToModel(row));
- }
- return modelList;
- }
- /// <summary>
- /// 获得前几行数据
- /// </summary>
- /// <param name="Top">行数</param>
- /// <param name="strWhere">条件 不包含 where 关键字</param>
- /// <param name="filedOrder">SQL排序 如:id asc</param>
- /// <returns></returns>
- public DataSet GetList(int Top, string strWhere, string filedOrder = "ID asc")
- {
- StringBuilder strSql = new StringBuilder();
- strSql.Append("select ");
- if (Top > 0)
- {
- strSql.Append(" top " + Top.ToString());
- }
- strSql.Append(" " + this.TableFieldNameStr + " from " + this.TableName + " ");
- if (strWhere.Trim() != "")
- {
- strSql.Append(" where 1=1 and (" + strWhere + ")");
- }
- strSql.Append(" order by " + filedOrder);
- DataSet ds = SQLHelper.Query(strSql.ToString(), this.DBConn.DBConnectionString);
- ds.Tables[0].TableName = this.TableName;
- return ds;
- }
- #endregion
- #region 数据分页
- /// <summary>
- /// 获取记录总数
- /// </summary>
- public int GetRecordCount(string strWhere)
- {
- StringBuilder strSql = new StringBuilder();
- strSql.Append("select count(1) FROM " + this.TableName + " ");
- if (strWhere.Trim() != "")
- {
- strSql.Append(" where 1=1 and (" + strWhere + ")");
- }
- object obj = SQLHelper.GetSingle(strSql.ToString(), this.DBConn.DBConnectionString);
- if (obj == null)
- {
- return 0;
- }
- else
- {
- return Convert.ToInt32(obj);
- }
- }
- /// <summary>
- /// 获取分页后总页数
- /// </summary>
- /// <param name="strWhere">筛选条件</param>
- /// <param name="pageSize">页面大小</param>
- /// <returns></returns>
- public int GetByPageCount(string strWhere, int pageSize)
- {
- int pageCount = 0;
- if (pageSize > 0)
- {
- int allCount = GetRecordCount(strWhere);
- pageCount = allCount / pageSize;
- if (pageCount * pageSize < allCount)
- {
- pageCount++;
- }
- }
- return pageCount;
- }
- /// <summary>
- /// 分页获取数据列表
- /// </summary>
- /// <param name="strWhere">筛选条件</param>
- /// <param name="pageIndex">当前页 不能小于0的整数</param>
- /// <param name="pageSize">页面大小,每页显示条数 不能小于0的整数</param>
- /// <param name="orderby">排序</param>
- /// <returns></returns>
- public DataSet GetListByPage(string strWhere, int pageIndex, int pageSize, string orderby = "id desc")
- {
- return this.GetListByPage(strWhere, orderby, (pageIndex - 1) * pageSize, pageIndex * pageSize);
- }
- /// <summary>
- /// 分页获取数据列表
- /// </summary>
- /// <param name="strWhere">筛选条件</param>
- /// <param name="orderby">排序</param>
- /// <param name="pageIndex">当前页</param>
- /// <param name="pageSize">页面大小,每页显示条数</param>
- /// <param name="pageCount">返回总页数</param>
- /// <returns></returns>
- public DataSet GetListByPage(string strWhere, string orderby, int pageIndex, int pageSize, ref int pageCount)
- {
- pageCount = GetByPageCount(strWhere, pageSize);
- return this.GetListByPage(strWhere, orderby, (pageIndex - 1) * pageSize, pageIndex * pageSize);
- }
- /// <summary>
- /// 分页获取数据列表
- /// </summary>
- /// <param name="strWhere">条件</param>
- /// <param name="orderby">排序</param>
- /// <param name="startIndex">开始index</param>
- /// <param name="endIndex">结束index</param>
- /// <returns></returns>
- public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
- {
- if (!string.IsNullOrEmpty(strWhere.Trim()))
- {
- strWhere = " Where " + strWhere;
- }
- if (!string.IsNullOrEmpty(orderby.Trim()))
- {
- orderby = " Order By " + orderby;
- }
- StringBuilder strSql = new StringBuilder();
- strSql.Append("SELECT * FROM " + this.TableName + " Where ID Not IN ");
- strSql.Append("(Select Top " + startIndex + " ID From " + this.TableName + " " + strWhere + orderby + ")");
- strSql.Append(" And ID In ");
- strSql.Append("(Select Top " + endIndex + " ID From " + this.TableName + " " + strWhere + orderby + ")");
- strSql.Append(orderby);
- DataSet ds = SQLHelper.Query(strSql.ToString(), this.DBConn.DBConnectionString);
- ds.Tables[0].TableName = this.TableName;
- return ds;
- }
- #endregion
- #region 杨云奕添加 17-04-09 优化sql新增修改的方法
-
- /// <summary>
- /// 通过泛型实体生成更新语句和对象
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="date"></param>
- /// <param name="filterFieldName"></param>
- /// <param name="operators"></param>
- /// <param name="overlookFieldList"></param>
- /// <param name="whereStr"></param>
- /// <param name="type"></param>
- /// <returns></returns>
- public LYFZ.Helper.CommandInfo GetUpdateCommandInfoByEntity(T date, string filterFieldName = "ID",
- string operators = "=", string overlookFieldList = "ID", string whereStr = null,
- EffentNextType type = EffentNextType.None)
- {
- var properties = ReflectionHelper.GetProperties(typeof(T));
- StringBuilder strSql = new StringBuilder();
- Dictionary<string, PropertyInfo> dicWhereData = new Dictionary<string, PropertyInfo>();
- strSql.Append("update " + this.TableName + " set ");
- List<SqlParameter> parameterlist = new List<SqlParameter>();
- var ignorePropertyNames = new HashSet<string>();
- var filterPropertyNames = new HashSet<string>();
- ///跳过的字段数据
- if (!string.IsNullOrEmpty(overlookFieldList))
- {
- foreach (var msg in overlookFieldList.Split(','))
- {
- ignorePropertyNames.Add(msg);
- }
- }
- ///用于查询的where条件的数据
- if (!string.IsNullOrEmpty(filterFieldName))
- {
- foreach (var msg in filterFieldName.Split(','))
- {
- filterPropertyNames.Add(msg);
- }
- }
-
- foreach (var property in properties)
- {
- var ignoreProperty = ignorePropertyNames.SingleOrDefault(x => x.Equals(property.Value.Name, StringComparison.CurrentCultureIgnoreCase));
- var filterProperty = filterPropertyNames.SingleOrDefault(x => x.Equals(property.Value.Name, StringComparison.CurrentCultureIgnoreCase));
- if (filterProperty != null)
- {
- dicWhereData.Add(property.Key, property.Value);
- }
- if (ignoreProperty != null)
- continue;
- var propertyType = ReflectionHelper.GetPropertyType(property.Value);
- if( propertyType.Name.ToLower().IndexOf("list")!=-1)
- {
- continue;
- }
- var propertyValue = ReflectionHelper.GetPropertyValue(date, property.Value);
- if (propertyValue == null)
- {
- continue;
- }
- else if (propertyValue != null && propertyType.Name.ToLower().Equals("datetime") && propertyValue.ToString().Contains("0001"))
- {
- continue;
- }
- else if (propertyValue != null && propertyType.Name.ToLower().Equals("datetime") && Convert.ToDateTime(propertyValue) <= LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
- {
- continue;
- }
-
- // ColumnAction(property.Value.Name, propertyValue, propertyType, DataTypes.Object, 0);
- if (propertyValue != null)
- {
- strSql.Append("" + property.Key + "=@" + property.Key + ",");
- SqlParameter parameter = new SqlParameter("@" + property.Key, propertyValue);
- parameterlist.Add(parameter);
- }
- }
- //去除结尾多余的“,”
- if (strSql.ToString().LastIndexOf(',') == strSql.Length - 1)
- {
- strSql.Remove(strSql.Length - 1, 1);
- }
- if (whereStr == null)
- {
- if (filterFieldName != "" && operators != "")
- {
- string strWhere = "";
- foreach (var property in dicWhereData)
- {
- if (!string.IsNullOrEmpty(strWhere))
- {
- strWhere += " and ";
- }
- strWhere += property.Key + operators + "@" + property.Key;
- var propertyValue = ReflectionHelper.GetPropertyValue(date, property.Value);
- parameterlist.Add(new SqlParameter("@" + property.Key, propertyValue));
- }
- strSql.Append(" where " + strWhere);
-
- }
- }
- else
- {
- strSql.Append(" where 1=1 and (" + whereStr + ")");
- }
- SqlParameter[] parameters = parameterlist.ToArray();
- return new CommandInfo(strSql.ToString(), parameters, type);
- }
- /// <summary>
- /// 通过泛型方法生成新增对象信息
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="date"></param>
- /// <param name="overlookFieldList"></param>
- /// <param name="type"></param>
- /// <returns></returns>
- public LYFZ.Helper.CommandInfo GetAddCommandInfoByEntity(T date,
- string overlookFieldList = "ID",
- EffentNextType type = EffentNextType.None)
- {
- StringBuilder strSql = new StringBuilder();
- var properties = ReflectionHelper.GetProperties(typeof(T));
- StringBuilder tempFieldNameString = new StringBuilder();
- StringBuilder tempValueVariable = new StringBuilder();
- List<SqlParameter> parameterlist = new List<SqlParameter>();
- var ignorePropertyNames = new HashSet<string>();
-
- if (!string.IsNullOrEmpty(overlookFieldList))
- {
- foreach (var msg in overlookFieldList.Split(','))
- {
- ignorePropertyNames.Add(msg);
- }
- }
- foreach (var property in properties)
- {
- var ignoreProperty = ignorePropertyNames.SingleOrDefault(x => x.Equals(property.Value.Name, StringComparison.CurrentCultureIgnoreCase));
- if (ignoreProperty != null)
- continue;
- var propertyType = ReflectionHelper.GetPropertyType(property.Value);
- if (propertyType.Name.ToLower().IndexOf("list") != -1)
- {
- continue;
- }
- var propertyValue = ReflectionHelper.GetPropertyValue(date, property.Value);
- if (propertyValue==null)
- {
- continue;
- }
- if (propertyValue != null && propertyType.Name.ToLower().Equals("datetime") && propertyValue.ToString().Contains("0001"))
- {
- continue;
- }
- if (propertyValue != null && propertyType.Name.ToLower().Equals("datetime") && Convert.ToDateTime(propertyValue) <= LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
- {
- continue;
- }
- else if (property.Key.ToLower() == "id" && propertyType == typeof(long) && (propertyValue == null || Convert.ToInt64(propertyValue) == 0))
- {
- propertyValue = LYFZ.WinAPI.CustomPublicMethod.GenerateId();
- }
- if (propertyValue != null)
- {
- tempFieldNameString.Append("" + property.Key + ",");
- tempValueVariable.Append("@" + property.Key + ",");
- SqlParameter parameter = new SqlParameter("@" + property.Key, propertyValue);
- parameterlist.Add(parameter);
- }
- }
- if (tempFieldNameString.ToString().LastIndexOf(',') == tempFieldNameString.Length - 1)
- {
- tempFieldNameString.Remove(tempFieldNameString.Length - 1, 1);
- }
- //去除结尾多余的“,”
- if (tempValueVariable.ToString().LastIndexOf(',') == tempValueVariable.Length - 1)
- {
- tempValueVariable.Remove(tempValueVariable.Length - 1, 1);
- }
- strSql.Append("insert into " + this.TableName + "(");
- strSql.Append("" + tempFieldNameString.ToString() + ")");
- strSql.Append(" values (");
- strSql.Append("" + tempValueVariable.ToString() + ")");
- strSql.Append(";select @@IDENTITY");
- SqlParameter[] parameters = parameterlist.ToArray();
- return new CommandInfo(strSql.ToString(), parameters, type);
- }
- public object GetAddCommandInfoByEntity(T date, string overlookFieldList = "ID")
- {
- return GetAddCommandInfoByEntity(date, overlookFieldList, EffentNextType.None);
- }
- public object GetUpdateCommandInfoByEntity(T date, string filterFieldName = "ID", string operators = "=", string overlookFieldList = "ID", string whereStr = null)
- {
- return GetUpdateCommandInfoByEntity(date, filterFieldName, operators, overlookFieldList, whereStr, EffentNextType.None);
- }
- #endregion
- /// <summary>
- /// 转Json数据为Model
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="json"></param>
- /// <returns></returns>
- public static T JsonToModelByEntity(string json)
- {
- T t = Activator.CreateInstance<T>();
- T obj = (T)Newtonsoft.Json.JsonConvert.DeserializeObject(json, t.GetType());
- return obj;
- }
- /// <summary>
- /// 分页查询记录
- /// </summary>
- /// <returns></returns>
- public DataSet PagingQueryDataTable(string _pageTableName, string _QueryFieldName, string _OrderStr, string _QueryCondition, int _PageSize, int _PageIndex, out int _TotalCount)
- {
- SqlParameter[] parameters = {
- new SqlParameter("@TableName", SqlDbType.VarChar , 2000),
- new SqlParameter("@ReFieldsStr" , SqlDbType.VarChar , 2000),
- new SqlParameter("@OrderString", SqlDbType.VarChar , 2000 ),
- new SqlParameter("@WhereString", SqlDbType.VarChar, 2000),
- new SqlParameter("@PageSize", SqlDbType.Int),
- new SqlParameter("@PageIndex", SqlDbType.Int),
- new SqlParameter("@TotalRecord", SqlDbType.Int)
- };
- parameters[0].Value = _pageTableName;
- parameters[1].Value = _QueryFieldName;
- parameters[2].Value = _OrderStr;
- parameters[3].Value = _QueryCondition;
- parameters[4].Value = _PageSize;
- parameters[5].Value = _PageIndex;
- parameters[6].Direction = ParameterDirection.Output;
- DataSet ds = LYFZ.Helper.SQLHelper.RunProcedure("PROCE_SQL2005PAGECHANGE", parameters, _pageTableName + "_ds",this._DBConn.GetDBConnectionString());
- _TotalCount = Convert.ToInt32(parameters[6].Value);
- //if (_TotalCount == 0)
- //{
- // _PageCount = 0;
- //}
- //else
- //{
- // _PageCount = _TotalCount % _PageSize == 0 ? _TotalCount / _PageSize : _TotalCount / _PageSize + 1;
- //}
- return ds;
- }
- }
- #region 杨云奕添加 17-04-09 反射助手,用于泛型实体的反射操作
- internal static class ReflectionHelper
- {
- private static readonly ConcurrentDictionary<Type, Dictionary<string, PropertyInfo>> _cachedProperties = new ConcurrentDictionary<Type, Dictionary<string, PropertyInfo>>();
- /// <summary>
- /// 得到实体反射的表达式
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="expression"></param>
- /// <returns></returns>
- public static string GetPropertyNameFromExpression<T>(Expression<Func<T, object>> expression)
- {
- string propertyPath = null;
- if (expression.Body is UnaryExpression)
- {
- var unaryExpression = (UnaryExpression)expression.Body;
- if (unaryExpression.NodeType == ExpressionType.Convert)
- propertyPath = unaryExpression.Operand.ToString();
- }
- if (propertyPath == null)
- propertyPath = expression.Body.ToString();
- propertyPath = propertyPath.Replace(expression.Parameters[0] + ".", string.Empty);
- return propertyPath;
- }
- public static List<string> GetPropertyNamesFromExpressions<T>(Expression<Func<T, object>>[] expressions)
- {
- var propertyNames = new List<string>();
- foreach (var expression in expressions)
- {
- var propertyName = GetPropertyNameFromExpression(expression);
- propertyNames.Add(propertyName);
- }
- return propertyNames;
- }
- public static object GetPropertyValue(object item, PropertyInfo property)
- {
- var value = property.GetValue(item, null);
- return value;
- }
- public static object GetPropertyValue(object item, string propertyName)
- {
- PropertyInfo property;
- foreach (var part in propertyName.Split('.'))
- {
- if (item == null)
- return null;
- var type = item.GetType();
- property = type.GetProperty(part);
- if (property == null)
- return null;
- item = GetPropertyValue(item, property);
- }
- return item;
- }
- public static object GetPropertyValueDynamic(object item, string name)
- {
- var dictionary = (IDictionary<string, object>)item;
- return dictionary[name];
- }
- public static Dictionary<string, PropertyInfo> GetProperties(Type type)
- {
- var properties = _cachedProperties.GetOrAdd(type, BuildPropertyDictionary);
- return properties;
- }
- private static Dictionary<string, PropertyInfo> BuildPropertyDictionary(Type type)
- {
- var result = new Dictionary<string, PropertyInfo>();
- var properties = type.GetProperties();
- foreach (var property in properties)
- {
- result.Add(property.Name.ToLower(), property);
- }
- return result;
- }
- public static bool IsList(object item)
- {
- if (item is ICollection)
- return true;
- return false;
- }
- public static bool IsNullable(PropertyInfo property)
- {
- if (property.PropertyType.IsGenericType &&
- property.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>))
- return true;
- return false;
- }
- /// <summary>
- /// Includes a work around for getting the actual type of a Nullable type.
- /// </summary>
- public static Type GetPropertyType(PropertyInfo property)
- {
- if (IsNullable(property))
- return property.PropertyType.GetGenericArguments()[0];
- return property.PropertyType;
- }
- public static object GetDefault(Type type)
- {
- if (type.IsValueType)
- return Activator.CreateInstance(type);
- return null;
- }
- public static bool IsBasicClrType(Type type)
- {
- if (type.IsEnum
- || type.IsPrimitive
- || type.IsValueType
- || type == typeof(string)
- || type == typeof(DateTime))
- return true;
- return false;
- }
- public static bool IsCustomEntity<T>()
- {
- var type = typeof(T);
- if (type.IsClass && Type.GetTypeCode(type) == TypeCode.Object)
- return true;
- return false;
- }
- }
- #endregion
-
- }
|