BaseDataOperate.cs 59 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543
  1. using System;
  2. using System.Data;
  3. using System.Text;
  4. using System.Data.SqlClient;
  5. using System.Collections.Generic;
  6. using LYFZ.Helper;
  7. using System.Reflection;
  8. using System.Collections.Concurrent;
  9. using System.Linq.Expressions;
  10. using System.Collections;
  11. using System.Linq;
  12. using LYFZ.WinAPI;
  13. using System.Dynamic;
  14. using Newtonsoft.Json;
  15. namespace LYFZ.WanYuKeFuData.DAL
  16. {
  17. /// <summary>
  18. /// 数据操作抽象基类
  19. /// </summary>
  20. public abstract class BaseDataOperate<T>
  21. {
  22. #region 属性
  23. LYFZ.WanYuKeFuData.Model.DBConnection _DBConn;
  24. /// <summary>
  25. /// 当前数据库连接对象
  26. /// </summary>
  27. protected LYFZ.WanYuKeFuData.Model.DBConnection DBConn
  28. {
  29. get
  30. {
  31. return this._DBConn;
  32. }
  33. set
  34. {
  35. this._DBConn = value;
  36. }
  37. }
  38. /// <summary>
  39. /// 获取当前新的数据表模型对象
  40. /// </summary>
  41. public T ObjModel
  42. {
  43. get
  44. {
  45. return Activator.CreateInstance<T>();
  46. }
  47. }
  48. /// <summary>
  49. /// 数据表名
  50. /// </summary>
  51. public string TableName
  52. {
  53. get{
  54. return "tb_"+typeof(T).Name;
  55. }
  56. // set;
  57. }
  58. string _TableFieldNameStr = "";
  59. /// <summary>
  60. /// 数据表字段名字符串,字段名以“,”号分隔
  61. /// </summary>
  62. public string TableFieldNameStr
  63. {
  64. get
  65. {
  66. if (this._TableFieldNameStr.Trim() == "")
  67. {
  68. foreach (string fieldName in this.TableFieldNames)
  69. {
  70. if (this._TableFieldNameStr.Trim() == "")
  71. {
  72. this._TableFieldNameStr += "[" + fieldName + "]";
  73. }
  74. else
  75. {
  76. this._TableFieldNameStr += ",[" + fieldName + "]";
  77. }
  78. }
  79. }
  80. if (this._TableFieldNameStr.Trim() == "")
  81. {
  82. this._TableFieldNameStr = "*";
  83. }
  84. return this._TableFieldNameStr;
  85. }
  86. set { this._TableFieldNameStr = value; }
  87. }
  88. /// <summary>
  89. /// 数据表字段名数组
  90. /// </summary>
  91. public string[] TableFieldNames
  92. {
  93. get
  94. {
  95. System.Reflection.PropertyInfo[] propertyInfos = this.PropertyInfos;
  96. List<string> fieldNameList = new List<string>();
  97. foreach (System.Reflection.PropertyInfo propertyInfo in propertyInfos)
  98. {
  99. if (!propertyInfo.IsSpecialName)
  100. {
  101. fieldNameList.Add(propertyInfo.Name);
  102. }
  103. }
  104. return fieldNameList.ToArray();
  105. }
  106. }
  107. /// <summary>
  108. /// 获取要查询的当前表的字段集合字符串 用","号分隔
  109. /// </summary>
  110. /// <param name="filters"></param>
  111. /// <param name="isContain">如果为true 表示只返回 filters 集合中的字段 如果为false 表示返回排除 filters 集合中的字段以外的所有字段</param>
  112. /// <returns></returns>
  113. public string GetQueryTableFieldNames(string[] filters = null, bool isContain = false)
  114. {
  115. List<string> tempFilters = new List<string>();
  116. if (filters != null)
  117. {
  118. tempFilters.AddRange(filters);
  119. }
  120. System.Reflection.PropertyInfo[] propertyInfos = this.PropertyInfos;
  121. string fieldNames = "";
  122. for (int i = 0; i < propertyInfos.Length; i++)
  123. {
  124. if (!propertyInfos[i].IsSpecialName)
  125. {
  126. System.Reflection.PropertyInfo propertyInfo = propertyInfos[i];
  127. if ((!tempFilters.Contains(propertyInfo.Name) && !isContain) || (tempFilters.Contains(propertyInfo.Name) && isContain))
  128. {
  129. if (fieldNames.Trim().Length <= 0)
  130. {
  131. fieldNames = "[" + propertyInfo.Name + "]";
  132. }
  133. else
  134. {
  135. fieldNames += ",[" + propertyInfo.Name + "]";
  136. }
  137. }
  138. }
  139. }
  140. return fieldNames;
  141. }
  142. /// <summary>
  143. /// 获取属性集合
  144. /// </summary>
  145. public System.Reflection.PropertyInfo[] PropertyInfos
  146. {
  147. get
  148. {
  149. List<System.Reflection.PropertyInfo> list = new List<System.Reflection.PropertyInfo>();
  150. System.Reflection.PropertyInfo[] infos = ObjModel.GetType().GetProperties();
  151. foreach (System.Reflection.PropertyInfo info in infos)
  152. {
  153. if (info.CanWrite)
  154. {
  155. list.Add(info);
  156. }
  157. }
  158. return list.ToArray();
  159. }
  160. }
  161. #endregion
  162. #region 检查记录
  163. /// <summary>
  164. /// 是否存在该记录
  165. /// </summary>
  166. public bool Exists(int id)
  167. {
  168. return this.Exists("ID", id);
  169. }
  170. /// <summary>
  171. /// 根据筛选条件判断是否存在该记录
  172. /// </summary>
  173. /// <param name="filterFieldName">筛选字段名</param>
  174. /// <param name="filterValue">筛选值</param>
  175. /// <returns></returns>
  176. public bool Exists(string filterFieldName, object filterValue)
  177. {
  178. if (filterFieldName != "" && filterValue != null)
  179. {
  180. StringBuilder strSql = new StringBuilder();
  181. strSql.Append("select count(1) from " + this.TableName + " ");
  182. strSql.Append(" where 1=1 and " + filterFieldName + "=@" + filterFieldName);
  183. SqlParameter[] parameters = {
  184. new SqlParameter("@"+filterFieldName, filterValue)
  185. };
  186. return SQLHelper.Exists(strSql.ToString(), this.DBConn.DBConnectionString, parameters);
  187. }
  188. else
  189. {
  190. return false;
  191. }
  192. }
  193. /// <summary>
  194. /// 根据筛选条件判断是否存在该记录
  195. /// </summary>
  196. /// <param name="filterFieldName">筛选字段名</param>
  197. /// <param name="filterValue">筛选值</param>
  198. /// <returns></returns>
  199. public bool Exists(string whereString)
  200. {
  201. if (whereString.Trim().Length > 0)
  202. {
  203. StringBuilder strSql = new StringBuilder();
  204. strSql.Append("select count(1) from " + this.TableName + " ");
  205. strSql.Append(" where " + whereString);
  206. return SQLHelper.Exists(strSql.ToString(), this.DBConn.DBConnectionString);
  207. }
  208. else
  209. {
  210. return false;
  211. }
  212. }
  213. /// <summary>
  214. /// 判断是否存某个字段
  215. /// </summary>
  216. /// <param name="columnName">列名称</param>
  217. /// <returns>是否存在</returns>
  218. public bool ColumnExists(string columnName)
  219. {
  220. return SQLHelper.ColumnExists(this.TableName, columnName, this.DBConn.DBConnectionString);
  221. }
  222. #endregion
  223. #region 公共方法
  224. /// <summary>
  225. /// 获取最大ID()
  226. /// </summary>
  227. /// <returns></returns>
  228. public int GetMaxID()
  229. {
  230. return this.GetMaxID("ID");
  231. }
  232. /// <summary>
  233. /// 获取某字段最大值(获取字段必须为数字类型)
  234. /// </summary>
  235. /// <param name="FieldName">字段名</param>
  236. /// <returns></returns>
  237. public int GetMaxID(string FieldName)
  238. {
  239. return SQLHelper.GetMaxID(FieldName, this.TableName, this.DBConn.DBConnectionString);
  240. }
  241. #endregion
  242. #region 判断方法
  243. /// <summary>
  244. /// 获取是否为忽略字段 返回 true 表示忽略 false 不忽略
  245. /// </summary>
  246. /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
  247. /// <param name="fieldName">要判断的字段名</param>
  248. /// <returns></returns>
  249. public bool IsOverlookFiel(string overlookFieldList, string fieldName)
  250. {
  251. bool bl = false;
  252. string[] tempOverlookFieldList = overlookFieldList.Split(',');
  253. for (int i = 0; i < tempOverlookFieldList.Length; i++)
  254. {
  255. if (tempOverlookFieldList[i].Trim().ToLower() == fieldName.Trim().ToLower())
  256. {
  257. bl = true;
  258. break;
  259. }
  260. }
  261. return bl;
  262. }
  263. #endregion
  264. #region 增加数据
  265. /// <summary>
  266. /// 增加一条数据
  267. /// </summary>
  268. /// <param name="model">Model对象</param>
  269. /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
  270. /// <returns></returns>
  271. public bool Add(T model, string overlookFieldList = "ID")
  272. {
  273. LYFZ.Helper.CommandInfo comdInfo = this.GetAddCommandInfo(model, overlookFieldList);
  274. int rows = SQLHelper.ExecuteSql(comdInfo.CommandText, this.DBConn.DBConnectionString, (SqlParameter[])comdInfo.Parameters);
  275. if (rows > 0)
  276. {
  277. return true;
  278. }
  279. else
  280. {
  281. return false;
  282. }
  283. }
  284. /// <summary>
  285. /// 获取插入数CommandInfo对象
  286. /// </summary>
  287. /// <param name="model"></param>
  288. /// <param name="overlookFieldList">要忽略的字段集合 多个字段名有“,”号分隔</param>
  289. /// <returns></returns>
  290. public object GetAddCommandInfoObject(T model, string overlookFieldList = "ID")
  291. {
  292. return this.GetAddCommandInfo(model, overlookFieldList);
  293. }
  294. /// <summary>
  295. /// 获取插入数CommandInfo对象
  296. /// </summary>
  297. /// <param name="model"></param>
  298. /// <param name="overlookFieldList">要忽略的字段集合 多个字段名有“,”号分隔</param>
  299. /// <param name="type"></param>
  300. /// <returns></returns>
  301. public LYFZ.Helper.CommandInfo GetAddCommandInfo(T model, string overlookFieldList = "ID", EffentNextType type = EffentNextType.None)
  302. {
  303. StringBuilder strSql = new StringBuilder();
  304. StringBuilder tempFieldNameString = new StringBuilder();
  305. StringBuilder tempValueVariable = new StringBuilder();
  306. List<SqlParameter> parameterlist = new List<SqlParameter>();
  307. for (int i = 0; i < PropertyInfos.Length; i++)
  308. {
  309. try
  310. {
  311. System.Reflection.PropertyInfo propertyInfo = PropertyInfos[i];
  312. string tempFieldName = propertyInfo.Name;
  313. object tempValue = propertyInfo.GetValue(model, null);
  314. Type tempType = propertyInfo.PropertyType;
  315. if (!IsOverlookFiel(overlookFieldList, tempFieldName) || (tempFieldName.ToLower() == "id" && tempType == typeof(long)))
  316. {
  317. try
  318. {
  319. if (tempType.Name == "DateTime")
  320. {
  321. if (tempValue.ToString().Contains("0001"))
  322. {
  323. tempValue = null;
  324. }
  325. try
  326. {
  327. DateTime tempTime;
  328. if (!DateTime.TryParse(tempValue.ToString(), out tempTime))
  329. {
  330. tempValue = null;
  331. }
  332. else if (tempTime <= LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
  333. {
  334. tempValue = null;
  335. }
  336. }
  337. catch
  338. {
  339. tempValue = null;
  340. }
  341. }
  342. else if (tempFieldName.ToLower() == "id" && tempType == typeof(long) && (tempValue == null || Convert.ToInt64(tempValue) == 0))
  343. {
  344. tempValue = LYFZ.WinAPI.CustomPublicMethod.GenerateId();
  345. }
  346. if (tempValue != null)
  347. {
  348. tempFieldNameString.Append("" + tempFieldName + ",");
  349. tempValueVariable.Append("@" + tempFieldName + ",");
  350. SqlParameter parameter = new SqlParameter("@" + tempFieldName, tempValue);
  351. parameterlist.Add(parameter);
  352. }
  353. }
  354. catch { }
  355. }
  356. }
  357. catch { }
  358. }
  359. //去除结尾多余的“,”
  360. if (tempFieldNameString.ToString().LastIndexOf(',') == tempFieldNameString.Length - 1)
  361. {
  362. tempFieldNameString.Remove(tempFieldNameString.Length - 1, 1);
  363. }
  364. //去除结尾多余的“,”
  365. if (tempValueVariable.ToString().LastIndexOf(',') == tempValueVariable.Length - 1)
  366. {
  367. tempValueVariable.Remove(tempValueVariable.Length - 1, 1);
  368. }
  369. strSql.Append("insert into " + this.TableName + "(");
  370. strSql.Append("" + tempFieldNameString.ToString() + ")");
  371. strSql.Append(" values (");
  372. strSql.Append("" + tempValueVariable.ToString() + ")");
  373. strSql.Append(";select @@IDENTITY");
  374. SqlParameter[] parameters = parameterlist.ToArray();
  375. return new CommandInfo(strSql.ToString(), parameters, type);
  376. }
  377. #endregion
  378. #region 更新数据
  379. /// <summary>
  380. /// 根据筛选字段和SQL筛选运算符号更新数据(内部方法)
  381. /// </summary>
  382. /// <param name="model">Model对象</param>
  383. /// <param name="filterFieldName">筛选字段名称</param>
  384. /// <param name="operators">SQL筛选运算符号</param>
  385. /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
  386. /// <param name="whereStr">Wher条件,当指定条件语句时筛选字段设置无效,不包含“where”关键字 不建义使用此参数</param>
  387. /// <returns></returns>
  388. protected bool InsideUpdate(T model, string filterFieldName = "ID", string operators = "=", string overlookFieldList = "ID", string whereStr = null)
  389. {
  390. LYFZ.Helper.CommandInfo comdInfo = GetUpdateCommandInfo(model, filterFieldName, operators, overlookFieldList, whereStr);
  391. int rows = SQLHelper.ExecuteSql(comdInfo.CommandText, this.DBConn.DBConnectionString, (SqlParameter[])comdInfo.Parameters);
  392. if (rows > 0)
  393. {
  394. return true;
  395. }
  396. else
  397. {
  398. return false;
  399. }
  400. }
  401. ///// <summary>
  402. ///// 获取更新数据的UpdateCommandInfo对象 根据筛选字段和SQL筛选运算符号更新数据(内部方法)
  403. ///// </summary>
  404. ///// <param name="model">Model对象</param>
  405. ///// <param name="filterFieldName">筛选字段名称</param>
  406. ///// <param name="operators">SQL筛选运算符号</param>
  407. ///// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
  408. ///// <param name="whereStr">Wher条件,当指定条件语句时筛选字段设置无效,不包含“where”关键字 不建义使用此参数</param>
  409. //public LYFZ.Helper.CommandInfo GetUpdateCommandInfoObject(T model, string filterFieldName = "ID", string operators = "=", string overlookFieldList = "ID", string whereStr = null)
  410. //{
  411. // return this.GetUpdateCommandInfo(model, filterFieldName, operators, overlookFieldList, whereStr);
  412. //}
  413. /// <summary>
  414. /// 获取更新数据的UpdateCommandInfo对象 根据筛选字段和SQL筛选运算符号更新数据(内部方法)
  415. /// </summary>
  416. /// <param name="model">Model对象</param>
  417. /// <param name="filterFieldName">筛选字段名称</param>
  418. /// <param name="operators">SQL筛选运算符号</param>
  419. /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
  420. /// <param name="whereStr">Wher条件,当指定条件语句时筛选字段设置无效,不包含“where”关键字 不建义使用此参数</param>
  421. /// <param name="type"></param>
  422. public LYFZ.Helper.CommandInfo GetUpdateCommandInfo(T model, string filterFieldName = "ID", string operators = "=", string overlookFieldList = "ID", string whereStr = null, EffentNextType type = EffentNextType.None)
  423. {
  424. StringBuilder strSql = new StringBuilder();
  425. strSql.Append("update " + this.TableName + " set ");
  426. List<SqlParameter> parameterlist = new List<SqlParameter>();
  427. overlookFieldList += "," + filterFieldName;
  428. for (int i = 0; i < PropertyInfos.Length; i++)
  429. {
  430. try
  431. {
  432. System.Reflection.PropertyInfo propertyInfo = PropertyInfos[i];
  433. string tempFieldName = propertyInfo.Name;//字段名
  434. object tempValue = propertyInfo.GetValue(model, null);//对应字段值
  435. //如果字段名不为忽略字段则进行处理
  436. if (!IsOverlookFiel(overlookFieldList, tempFieldName))
  437. {
  438. try
  439. {
  440. if (tempValue.GetType() == typeof(DateTime))
  441. {
  442. DateTime tempTime;
  443. try
  444. {
  445. if (!DateTime.TryParse(tempValue.ToString(), out tempTime))
  446. {
  447. tempValue = null;
  448. }
  449. else if (tempTime <= LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
  450. {
  451. tempValue = null;
  452. }
  453. else if (tempTime.Year == Convert.ToDateTime("0001-01-01").Year || tempTime.Year == Convert.ToDateTime("1753-01-01").Year)
  454. {
  455. tempValue = null;
  456. }
  457. }
  458. catch { tempValue = null; }
  459. }
  460. }
  461. catch { }
  462. strSql.Append("" + tempFieldName + "=@" + tempFieldName + ",");
  463. SqlParameter parameter = new SqlParameter("@" + tempFieldName, tempValue);
  464. parameterlist.Add(parameter);
  465. }
  466. }
  467. catch { }
  468. }
  469. //去除结尾多余的“,”
  470. if (strSql.ToString().LastIndexOf(',') == strSql.Length - 1)
  471. {
  472. strSql.Remove(strSql.Length - 1, 1);
  473. }
  474. if (whereStr == null)
  475. {
  476. if (filterFieldName != "" && operators != "")
  477. {
  478. try
  479. {
  480. object FilterFieldValue = LYFZ.WinAPI.CustomPublicMethod.GetPropertyValue(model, filterFieldName);// model.GetType().GetProperty(filterFieldName).GetValue(model, null);
  481. strSql.Append(" where " + filterFieldName + operators + "@" + filterFieldName);
  482. parameterlist.Add(new SqlParameter("@" + filterFieldName, FilterFieldValue));
  483. }
  484. catch
  485. {
  486. }
  487. }
  488. }
  489. else
  490. {
  491. strSql.Append(" where 1=1 and (" + whereStr + ")");
  492. }
  493. SqlParameter[] parameters = parameterlist.ToArray();
  494. return new CommandInfo(strSql.ToString(), parameters, type);
  495. }
  496. /// <summary>
  497. /// 根据筛选字段和SQL筛选运算符号更新数据
  498. /// </summary>
  499. /// <param name="model">Model对象</param>
  500. /// <param name="filterFieldName">筛选字段名称</param>
  501. /// <param name="operators">SQL筛选运算符号</param>
  502. /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
  503. /// <returns></returns>
  504. public bool Update(T model, string filterFieldName = "ID", string operators = "=", string overlookFieldList = "ID")
  505. {
  506. return InsideUpdate(model, filterFieldName, operators, overlookFieldList);
  507. }
  508. /// <summary>
  509. /// 根据Wher条件更新数据 不建义使用此方法
  510. /// </summary>
  511. /// <param name="model">Model对象</param>
  512. /// <param name="whereStr">Wher条件,不包含“where”关键字</param>
  513. /// <param name="overlookFieldList">忽略字段名列表 字段名之间用“,”号分隔</param>
  514. /// <returns></returns>
  515. public bool Update(T model, string whereStr, string overlookFieldList = "ID")
  516. {
  517. return InsideUpdate(model, overlookFieldList: overlookFieldList, whereStr: whereStr);
  518. }
  519. #endregion
  520. #region 删除数据
  521. /// <summary>
  522. /// 根据筛选字段或where条件删除数据
  523. /// </summary>
  524. /// <param name="filterFieldName">筛选字段名</param>
  525. /// <param name="operators">筛选SQL运算符</param>
  526. /// <param name="filterValue">筛选值</param>
  527. /// <param name="whereStr">Wher条件,不包含“where”关键字</param>
  528. /// <returns></returns>
  529. protected bool InsideDelete(string filterFieldName = "ID", string operators = "=", object filterValue = null, string whereStr = null)
  530. {
  531. LYFZ.Helper.CommandInfo comdInfo = GetDeleteCommandInfo(filterFieldName, operators, filterValue, whereStr);
  532. int rows = SQLHelper.ExecuteSql(comdInfo.CommandText, this.DBConn.DBConnectionString, (SqlParameter[])comdInfo.Parameters);
  533. if (rows > 0)
  534. {
  535. return true;
  536. }
  537. else
  538. {
  539. return false;
  540. }
  541. }
  542. ///// <summary>
  543. ///// 根据筛选字段或where条件删除数据
  544. ///// </summary>
  545. ///// <param name="filterFieldName">筛选字段名</param>
  546. ///// <param name="operators">筛选SQL运算符</param>
  547. ///// <param name="filterValue">筛选值</param>
  548. ///// <param name="whereStr">Wher条件,传入条件语句时筛选字段无效不建义使用 不包含“where”关键字</param>
  549. ///// <returns></returns>
  550. //public object GetDeleteCommandInfoObject(string filterFieldName = "ID", string operators = "=", object filterValue = null, string whereStr = null)
  551. //{
  552. // return this.GetDeleteCommandInfo(filterFieldName, operators, filterValue, whereStr);
  553. //}
  554. /// <summary>
  555. /// 根据筛选字段或where条件删除数据
  556. /// </summary>
  557. /// <param name="filterFieldName">筛选字段名</param>
  558. /// <param name="operators">筛选SQL运算符</param>
  559. /// <param name="filterValue">筛选值</param>
  560. /// <param name="whereStr">Wher条件,传入条件语句时筛选字段无效不建义使用 不包含“where”关键字</param>
  561. /// <param name="type"></param>
  562. /// <returns></returns>
  563. public LYFZ.Helper.CommandInfo GetDeleteCommandInfo(string filterFieldName = "ID", string operators = "=", object filterValue = null, string whereStr = null, EffentNextType type = EffentNextType.None)
  564. {
  565. if (filterValue == null) { filterValue = ""; }
  566. List<SqlParameter> parameterlist = new List<SqlParameter>();
  567. StringBuilder strSql = new StringBuilder();
  568. strSql.Append("delete from " + this.TableName + " ");
  569. if (whereStr == null)
  570. {
  571. strSql.Append(" where " + filterFieldName + "" + operators + "@" + filterFieldName + "");
  572. parameterlist.Add(new SqlParameter("@" + filterFieldName, filterValue));
  573. }
  574. else
  575. {
  576. strSql.Append(" where ID>@ID and (" + whereStr + ")");
  577. parameterlist.Add(new SqlParameter("@ID", Convert.ToInt32(0)));
  578. }
  579. SqlParameter[] parameters = parameterlist.ToArray();
  580. return new CommandInfo(strSql.ToString(), parameters, type);
  581. }
  582. /// <summary>
  583. /// 删除一条数据
  584. /// </summary>
  585. /// <param name="ID">id</param>
  586. public bool Delete(long ID)
  587. {
  588. return this.InsideDelete(filterValue: ID);
  589. }
  590. /// <summary>
  591. /// 删除一条数据
  592. /// </summary>
  593. /// <param name="ID">id</param>
  594. public bool Delete(int ID)
  595. {
  596. return this.InsideDelete(filterValue: ID);
  597. }
  598. /// <summary>
  599. /// 根据筛选字段删除数据
  600. /// </summary>
  601. /// <param name="filterValue">筛选值</param>
  602. /// <param name="filterFieldName">筛选字段名</param>
  603. /// <param name="operators">筛选SQL运算符</param>
  604. /// <returns></returns>
  605. public bool Delete(object filterValue, string filterFieldName = "ID", string operators = "=")
  606. {
  607. return this.InsideDelete(filterFieldName, operators, filterValue);
  608. }
  609. /// <summary>
  610. /// 根据where条件删除数据 不建义使用此方法
  611. /// </summary>
  612. /// <param name="whereStr">Wher条件,不包含“where”关键字</param>
  613. /// <returns></returns>
  614. public bool Delete(string whereStr)
  615. {
  616. return this.InsideDelete(whereStr: whereStr);
  617. }
  618. /// <summary>
  619. /// 批量删除数据
  620. /// </summary>
  621. /// <param name="filterFieldName">筛选字段名</param>
  622. /// <param name="valueList">值列表,多个值用“,”分隔,字符串值用“'”号包含</param>
  623. public bool DeleteList(string filterFieldName, string valueList)
  624. {
  625. if (filterFieldName != "" && valueList != "")
  626. {
  627. StringBuilder strSql = new StringBuilder();
  628. strSql.Append("delete from " + this.TableName + " ");
  629. strSql.Append(" where " + filterFieldName + " in (" + valueList + ") ");
  630. int rows = SQLHelper.ExecuteSql(strSql.ToString(), this.DBConn.DBConnectionString);
  631. if (rows > 0)
  632. {
  633. return true;
  634. }
  635. else
  636. {
  637. return false;
  638. }
  639. }
  640. else
  641. {
  642. return false;
  643. }
  644. }
  645. /// <summary>
  646. /// 按ID列表批量删除数据
  647. /// </summary>
  648. /// <param name="idList">ID列表,多个用“,”分隔</param>
  649. public bool DeleteList(string idList)
  650. {
  651. return this.DeleteList("ID", idList);
  652. }
  653. #endregion
  654. #region 查询数据
  655. public T DataRowToModel(DataRow dr)
  656. {
  657. if (dr == null)
  658. {
  659. return Activator.CreateInstance<T>();
  660. }
  661. Dictionary<string, string> dataInfo = new Dictionary<string, string>();
  662. dynamic objmatch = new ExpandoObject();
  663. for (int i = 0; i < dr.Table.Columns.Count; i++)
  664. {
  665. string value = dr[dr.Table.Columns[i].ColumnName].ToString();
  666. if (!string.IsNullOrEmpty(value))
  667. {
  668. dataInfo.Add(dr.Table.Columns[i].ColumnName, value);
  669. }
  670. }
  671. objmatch = dataInfo;
  672. string json = JsonConvert.SerializeObject((object)objmatch);
  673. return DataRowToModelByEntity(json);
  674. }
  675. public T GetModelObjectByEntity(string filterFieldName, object filterValue)
  676. {
  677. DataRow dr = GetDataRow(filterFieldName, filterValue);
  678. Dictionary<string, string> dataInfo = new Dictionary<string, string>();
  679. if(dr==null)
  680. {
  681. return Activator.CreateInstance<T>();
  682. }
  683. dynamic objmatch = new ExpandoObject();
  684. for (int i = 0; i < dr.Table.Columns.Count; i++)
  685. {
  686. string value = dr[dr.Table.Columns[i].ColumnName].ToString();
  687. if (!string.IsNullOrEmpty(value))
  688. {
  689. dataInfo.Add(dr.Table.Columns[i].ColumnName, value);
  690. }
  691. }
  692. objmatch = dataInfo;
  693. string json = JsonConvert.SerializeObject((object)objmatch);
  694. return DataRowToModelByEntity(json);
  695. }
  696. public T DataRowToModelByEntity(int ID)
  697. {
  698. DataRow dr = GetDataRow(ID);
  699. if (dr == null)
  700. {
  701. return Activator.CreateInstance<T>();
  702. }
  703. Dictionary<string, string> dataInfo = new Dictionary<string, string>();
  704. dynamic objmatch = new ExpandoObject();
  705. for (int i = 0; i < dr.Table.Columns.Count; i++)
  706. {
  707. string value = dr[dr.Table.Columns[i].ColumnName].ToString();
  708. if (!string.IsNullOrEmpty(value))
  709. {
  710. dataInfo.Add(dr.Table.Columns[i].ColumnName, value);
  711. }
  712. }
  713. objmatch = dataInfo;
  714. string json = JsonConvert.SerializeObject((object)objmatch);
  715. return DataRowToModelByEntity(json);
  716. }
  717. T DataRowToModelByEntity(string json)
  718. {
  719. T obj = (T)JsonConvert.DeserializeObject(json, this.ObjModel.GetType());
  720. return obj;
  721. }
  722. /// <summary>
  723. /// 得到一个Object对象实体
  724. /// </summary>
  725. /// <param name="ID"></param>
  726. /// <returns></returns>
  727. public T GetModel(long ID)
  728. {
  729. return DataRowToModel(GetDataRow(ID));
  730. }
  731. /// <summary>
  732. /// 得到一个Object对象实体
  733. /// </summary>
  734. /// <param name="ID"></param>
  735. /// <returns></returns>
  736. public T GetModel(int ID)
  737. {
  738. return DataRowToModel(GetDataRow(ID));
  739. }
  740. /// <summary>
  741. /// 根据筛选条件获取一条数据Model对象
  742. /// </summary>
  743. /// <param name="filterFieldName">筛选条件字段名</param>
  744. /// <param name="filterValue">值</param>
  745. /// <returns></returns>
  746. public T GetModel(string filterFieldName, object filterValue)
  747. {
  748. return DataRowToModel(GetDataRow(filterFieldName, filterValue));
  749. }
  750. /// <summary>
  751. /// 根据筛选条件获取一条数据Model对象
  752. /// </summary>
  753. /// <param name="filterFieldName">筛选条件字段名</param>
  754. /// <param name="filterValue">值</param>
  755. /// <param name="operators">SQL筛选运算符号</param>
  756. /// <returns></returns>
  757. public T GetModel(string filterFieldName, object filterValue, string operators)
  758. {
  759. return DataRowToModel(GetDataRow(filterFieldName, filterValue, operators));
  760. }
  761. /// <summary>
  762. /// 根据筛选条件获取一条数据Model对象
  763. /// </summary>
  764. /// <param name="whereString">筛选条件</param>
  765. /// <returns></returns>
  766. public T GetModel(string whereString)
  767. {
  768. return DataRowToModel(GetDataRow(whereString));
  769. }
  770. /// <summary>
  771. /// 获取一条数据DataRow对象
  772. /// </summary>
  773. /// <param name="ID">id</param>
  774. /// <returns></returns>
  775. public DataRow GetDataRow(long id)
  776. {
  777. return GetDataRow("ID", id);
  778. }
  779. /// <summary>
  780. /// 获取一条数据DataRow对象
  781. /// </summary>
  782. /// <param name="ID">id</param>
  783. /// <returns></returns>
  784. public DataRow GetDataRow(int id)
  785. {
  786. return GetDataRow("ID", id);
  787. }
  788. /// <summary>
  789. /// 根据筛选条件获取一条数据DataRow对象
  790. /// </summary>
  791. /// <param name="whereString">筛选条件</param>
  792. /// <returns></returns>
  793. public DataRow GetDataRow(string whereString)
  794. {
  795. if (whereString.Trim().Length > 0)
  796. {
  797. StringBuilder strSql = new StringBuilder();
  798. strSql.Append("select top 1 " + this.TableFieldNameStr + " from " + this.TableName + " ");
  799. strSql.Append(" where " + whereString);
  800. DataSet ds = SQLHelper.Query(strSql.ToString(), this.DBConn.DBConnectionString);
  801. if (ds.Tables[0].Rows.Count > 0)
  802. {
  803. return ds.Tables[0].Rows[0];
  804. }
  805. else
  806. {
  807. return null;
  808. }
  809. }
  810. else
  811. {
  812. return null;
  813. }
  814. }
  815. /// <summary>
  816. /// 根据筛选条件获取一条数据DataRow对象
  817. /// </summary>
  818. /// <param name="filterFieldName">筛选条件字段名</param>
  819. /// <param name="filterValue">值</param>
  820. /// <param name="operators">SQL筛选运算符号</param>
  821. /// <returns></returns>
  822. public DataRow GetDataRow(string filterFieldName, object filterValue, string operators = "=")
  823. {
  824. if (filterFieldName != "" && filterValue != null)
  825. {
  826. StringBuilder strSql = new StringBuilder();
  827. strSql.Append("select top 1 " + this.TableFieldNameStr + " from " + this.TableName + " ");
  828. strSql.Append(" where 1=1 and " + filterFieldName + "" + operators + "@" + filterFieldName + " ");
  829. SqlParameter[] parameters = {
  830. new SqlParameter("@"+filterFieldName, filterValue)
  831. };
  832. DataSet ds = SQLHelper.Query(strSql.ToString(), this.DBConn.DBConnectionString, parameters);
  833. if (ds.Tables[0].Rows.Count > 0)
  834. {
  835. return ds.Tables[0].Rows[0];
  836. }
  837. else
  838. {
  839. return null;
  840. }
  841. }
  842. else
  843. {
  844. return null;
  845. }
  846. }
  847. /// <summary>
  848. /// 根据筛选条件获取一条数据DataRow对象(运算符是“=”)
  849. /// </summary>
  850. /// <param name="filterFieldName">筛选条件字段名</param>
  851. /// <param name="filterValue">值</param>
  852. /// <returns></returns>
  853. public DataRow GetDataRow(string filterFieldName, object filterValue)
  854. {
  855. return GetDataRow(filterFieldName, filterValue, "=");
  856. }
  857. /// <summary>
  858. /// 得到一个对象实体
  859. /// </summary>
  860. public T DataRowToModel(DataRow row, T model)
  861. {
  862. if (row != null)
  863. {
  864. for (int i = 0; i < PropertyInfos.Length; i++)
  865. {
  866. try
  867. {
  868. System.Reflection.PropertyInfo propertyInfo = PropertyInfos[i];
  869. string tempFieldName = propertyInfo.Name;//字段名
  870. if (row[tempFieldName] != null)
  871. {
  872. object tempValue = row[tempFieldName];//对应字段值
  873. LYFZ.WinAPI.CustomPublicMethod.SetPropertyValue(model, propertyInfo, tempValue);
  874. }
  875. }
  876. catch
  877. {
  878. }
  879. }
  880. }
  881. return model;
  882. }
  883. /// <summary>
  884. /// 获得数据列表
  885. /// </summary>
  886. /// <param name="strWhere">条件语句 不包含 where 关键字</param>
  887. /// <param name="filedOrder">SQL排序 如:id desc</param>
  888. public DataSet GetList(string strWhere, string filedOrder = "ID asc")
  889. {
  890. return this.GetList(0, strWhere, filedOrder);
  891. }
  892. /// <summary>
  893. /// 获得全部数据列表
  894. /// </summary>
  895. /// <param name="filedOrder">SQL排序 如:id desc</param>
  896. public DataSet GetAllList(string filedOrder = "ID asc")
  897. {
  898. return this.GetList("", filedOrder);
  899. }
  900. /// <summary>
  901. /// 获得全部数据列表
  902. /// </summary>
  903. /// <param name="filedOrder">SQL排序 如:id desc</param>
  904. public List<T> GetAllModelList(string filedOrder = "ID asc")
  905. {
  906. DataTable tb = this.GetAllList(filedOrder).Tables[0];
  907. List<T> modelList = new List<T>();
  908. foreach (DataRow row in tb.Rows)
  909. {
  910. modelList.Add(this.DataRowToModel(row));
  911. }
  912. return modelList;
  913. }
  914. /// <summary>
  915. /// 获得前几行数据
  916. /// </summary>
  917. /// <param name="Top">行数</param>
  918. /// <param name="strWhere">条件 不包含 where 关键字</param>
  919. /// <param name="filedOrder">SQL排序 如:id asc</param>
  920. /// <returns></returns>
  921. public DataSet GetList(int Top, string strWhere, string filedOrder = "ID asc")
  922. {
  923. StringBuilder strSql = new StringBuilder();
  924. strSql.Append("select ");
  925. if (Top > 0)
  926. {
  927. strSql.Append(" top " + Top.ToString());
  928. }
  929. strSql.Append(" " + this.TableFieldNameStr + " from " + this.TableName + " ");
  930. if (strWhere.Trim() != "")
  931. {
  932. strSql.Append(" where 1=1 and (" + strWhere + ")");
  933. }
  934. strSql.Append(" order by " + filedOrder);
  935. DataSet ds = SQLHelper.Query(strSql.ToString(), this.DBConn.DBConnectionString);
  936. ds.Tables[0].TableName = this.TableName;
  937. return ds;
  938. }
  939. #endregion
  940. #region 数据分页
  941. /// <summary>
  942. /// 获取记录总数
  943. /// </summary>
  944. public int GetRecordCount(string strWhere)
  945. {
  946. StringBuilder strSql = new StringBuilder();
  947. strSql.Append("select count(1) FROM " + this.TableName + " ");
  948. if (strWhere.Trim() != "")
  949. {
  950. strSql.Append(" where 1=1 and (" + strWhere + ")");
  951. }
  952. object obj = SQLHelper.GetSingle(strSql.ToString(), this.DBConn.DBConnectionString);
  953. if (obj == null)
  954. {
  955. return 0;
  956. }
  957. else
  958. {
  959. return Convert.ToInt32(obj);
  960. }
  961. }
  962. /// <summary>
  963. /// 获取分页后总页数
  964. /// </summary>
  965. /// <param name="strWhere">筛选条件</param>
  966. /// <param name="pageSize">页面大小</param>
  967. /// <returns></returns>
  968. public int GetByPageCount(string strWhere, int pageSize)
  969. {
  970. int pageCount = 0;
  971. if (pageSize > 0)
  972. {
  973. int allCount = GetRecordCount(strWhere);
  974. pageCount = allCount / pageSize;
  975. if (pageCount * pageSize < allCount)
  976. {
  977. pageCount++;
  978. }
  979. }
  980. return pageCount;
  981. }
  982. /// <summary>
  983. /// 分页获取数据列表
  984. /// </summary>
  985. /// <param name="strWhere">筛选条件</param>
  986. /// <param name="pageIndex">当前页 不能小于0的整数</param>
  987. /// <param name="pageSize">页面大小,每页显示条数 不能小于0的整数</param>
  988. /// <param name="orderby">排序</param>
  989. /// <returns></returns>
  990. public DataSet GetListByPage(string strWhere, int pageIndex, int pageSize, string orderby = "id desc")
  991. {
  992. return this.GetListByPage(strWhere, orderby, (pageIndex - 1) * pageSize, pageIndex * pageSize);
  993. }
  994. /// <summary>
  995. /// 分页获取数据列表
  996. /// </summary>
  997. /// <param name="strWhere">筛选条件</param>
  998. /// <param name="orderby">排序</param>
  999. /// <param name="pageIndex">当前页</param>
  1000. /// <param name="pageSize">页面大小,每页显示条数</param>
  1001. /// <param name="pageCount">返回总页数</param>
  1002. /// <returns></returns>
  1003. public DataSet GetListByPage(string strWhere, string orderby, int pageIndex, int pageSize, ref int pageCount)
  1004. {
  1005. pageCount = GetByPageCount(strWhere, pageSize);
  1006. return this.GetListByPage(strWhere, orderby, (pageIndex - 1) * pageSize, pageIndex * pageSize);
  1007. }
  1008. /// <summary>
  1009. /// 分页获取数据列表
  1010. /// </summary>
  1011. /// <param name="strWhere">条件</param>
  1012. /// <param name="orderby">排序</param>
  1013. /// <param name="startIndex">开始index</param>
  1014. /// <param name="endIndex">结束index</param>
  1015. /// <returns></returns>
  1016. public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
  1017. {
  1018. if (!string.IsNullOrEmpty(strWhere.Trim()))
  1019. {
  1020. strWhere = " Where " + strWhere;
  1021. }
  1022. if (!string.IsNullOrEmpty(orderby.Trim()))
  1023. {
  1024. orderby = " Order By " + orderby;
  1025. }
  1026. StringBuilder strSql = new StringBuilder();
  1027. strSql.Append("SELECT * FROM " + this.TableName + " Where ID Not IN ");
  1028. strSql.Append("(Select Top " + startIndex + " ID From " + this.TableName + " " + strWhere + orderby + ")");
  1029. strSql.Append(" And ID In ");
  1030. strSql.Append("(Select Top " + endIndex + " ID From " + this.TableName + " " + strWhere + orderby + ")");
  1031. strSql.Append(orderby);
  1032. DataSet ds = SQLHelper.Query(strSql.ToString(), this.DBConn.DBConnectionString);
  1033. ds.Tables[0].TableName = this.TableName;
  1034. return ds;
  1035. }
  1036. #endregion
  1037. #region 杨云奕添加 17-04-09 优化sql新增修改的方法
  1038. /// <summary>
  1039. /// 通过泛型实体生成更新语句和对象
  1040. /// </summary>
  1041. /// <typeparam name="T"></typeparam>
  1042. /// <param name="date"></param>
  1043. /// <param name="filterFieldName"></param>
  1044. /// <param name="operators"></param>
  1045. /// <param name="overlookFieldList"></param>
  1046. /// <param name="whereStr"></param>
  1047. /// <param name="type"></param>
  1048. /// <returns></returns>
  1049. public LYFZ.Helper.CommandInfo GetUpdateCommandInfoByEntity(T date, string filterFieldName = "ID",
  1050. string operators = "=", string overlookFieldList = "ID", string whereStr = null,
  1051. EffentNextType type = EffentNextType.None)
  1052. {
  1053. var properties = ReflectionHelper.GetProperties(typeof(T));
  1054. StringBuilder strSql = new StringBuilder();
  1055. Dictionary<string, PropertyInfo> dicWhereData = new Dictionary<string, PropertyInfo>();
  1056. strSql.Append("update " + this.TableName + " set ");
  1057. List<SqlParameter> parameterlist = new List<SqlParameter>();
  1058. var ignorePropertyNames = new HashSet<string>();
  1059. var filterPropertyNames = new HashSet<string>();
  1060. ///跳过的字段数据
  1061. if (!string.IsNullOrEmpty(overlookFieldList))
  1062. {
  1063. foreach (var msg in overlookFieldList.Split(','))
  1064. {
  1065. ignorePropertyNames.Add(msg);
  1066. }
  1067. }
  1068. ///用于查询的where条件的数据
  1069. if (!string.IsNullOrEmpty(filterFieldName))
  1070. {
  1071. foreach (var msg in filterFieldName.Split(','))
  1072. {
  1073. filterPropertyNames.Add(msg);
  1074. }
  1075. }
  1076. foreach (var property in properties)
  1077. {
  1078. var ignoreProperty = ignorePropertyNames.SingleOrDefault(x => x.Equals(property.Value.Name, StringComparison.CurrentCultureIgnoreCase));
  1079. var filterProperty = filterPropertyNames.SingleOrDefault(x => x.Equals(property.Value.Name, StringComparison.CurrentCultureIgnoreCase));
  1080. if (filterProperty != null)
  1081. {
  1082. dicWhereData.Add(property.Key, property.Value);
  1083. }
  1084. if (ignoreProperty != null)
  1085. continue;
  1086. var propertyType = ReflectionHelper.GetPropertyType(property.Value);
  1087. if( propertyType.Name.ToLower().IndexOf("list")!=-1)
  1088. {
  1089. continue;
  1090. }
  1091. var propertyValue = ReflectionHelper.GetPropertyValue(date, property.Value);
  1092. if (propertyValue == null)
  1093. {
  1094. continue;
  1095. }
  1096. else if (propertyValue != null && propertyType.Name.ToLower().Equals("datetime") && propertyValue.ToString().Contains("0001"))
  1097. {
  1098. continue;
  1099. }
  1100. else if (propertyValue != null && propertyType.Name.ToLower().Equals("datetime") && Convert.ToDateTime(propertyValue) <= LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
  1101. {
  1102. continue;
  1103. }
  1104. // ColumnAction(property.Value.Name, propertyValue, propertyType, DataTypes.Object, 0);
  1105. if (propertyValue != null)
  1106. {
  1107. strSql.Append("" + property.Key + "=@" + property.Key + ",");
  1108. SqlParameter parameter = new SqlParameter("@" + property.Key, propertyValue);
  1109. parameterlist.Add(parameter);
  1110. }
  1111. }
  1112. //去除结尾多余的“,”
  1113. if (strSql.ToString().LastIndexOf(',') == strSql.Length - 1)
  1114. {
  1115. strSql.Remove(strSql.Length - 1, 1);
  1116. }
  1117. if (whereStr == null)
  1118. {
  1119. if (filterFieldName != "" && operators != "")
  1120. {
  1121. string strWhere = "";
  1122. foreach (var property in dicWhereData)
  1123. {
  1124. if (!string.IsNullOrEmpty(strWhere))
  1125. {
  1126. strWhere += " and ";
  1127. }
  1128. strWhere += property.Key + operators + "@" + property.Key;
  1129. var propertyValue = ReflectionHelper.GetPropertyValue(date, property.Value);
  1130. parameterlist.Add(new SqlParameter("@" + property.Key, propertyValue));
  1131. }
  1132. strSql.Append(" where " + strWhere);
  1133. }
  1134. }
  1135. else
  1136. {
  1137. strSql.Append(" where 1=1 and (" + whereStr + ")");
  1138. }
  1139. SqlParameter[] parameters = parameterlist.ToArray();
  1140. return new CommandInfo(strSql.ToString(), parameters, type);
  1141. }
  1142. /// <summary>
  1143. /// 通过泛型方法生成新增对象信息
  1144. /// </summary>
  1145. /// <typeparam name="T"></typeparam>
  1146. /// <param name="date"></param>
  1147. /// <param name="overlookFieldList"></param>
  1148. /// <param name="type"></param>
  1149. /// <returns></returns>
  1150. public LYFZ.Helper.CommandInfo GetAddCommandInfoByEntity(T date,
  1151. string overlookFieldList = "ID",
  1152. EffentNextType type = EffentNextType.None)
  1153. {
  1154. StringBuilder strSql = new StringBuilder();
  1155. var properties = ReflectionHelper.GetProperties(typeof(T));
  1156. StringBuilder tempFieldNameString = new StringBuilder();
  1157. StringBuilder tempValueVariable = new StringBuilder();
  1158. List<SqlParameter> parameterlist = new List<SqlParameter>();
  1159. var ignorePropertyNames = new HashSet<string>();
  1160. if (!string.IsNullOrEmpty(overlookFieldList))
  1161. {
  1162. foreach (var msg in overlookFieldList.Split(','))
  1163. {
  1164. ignorePropertyNames.Add(msg);
  1165. }
  1166. }
  1167. foreach (var property in properties)
  1168. {
  1169. var ignoreProperty = ignorePropertyNames.SingleOrDefault(x => x.Equals(property.Value.Name, StringComparison.CurrentCultureIgnoreCase));
  1170. if (ignoreProperty != null)
  1171. continue;
  1172. var propertyType = ReflectionHelper.GetPropertyType(property.Value);
  1173. if (propertyType.Name.ToLower().IndexOf("list") != -1)
  1174. {
  1175. continue;
  1176. }
  1177. var propertyValue = ReflectionHelper.GetPropertyValue(date, property.Value);
  1178. if (propertyValue==null)
  1179. {
  1180. continue;
  1181. }
  1182. if (propertyValue != null && propertyType.Name.ToLower().Equals("datetime") && propertyValue.ToString().Contains("0001"))
  1183. {
  1184. continue;
  1185. }
  1186. if (propertyValue != null && propertyType.Name.ToLower().Equals("datetime") && Convert.ToDateTime(propertyValue) <= LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
  1187. {
  1188. continue;
  1189. }
  1190. else if (property.Key.ToLower() == "id" && propertyType == typeof(long) && (propertyValue == null || Convert.ToInt64(propertyValue) == 0))
  1191. {
  1192. propertyValue = LYFZ.WinAPI.CustomPublicMethod.GenerateId();
  1193. }
  1194. if (propertyValue != null)
  1195. {
  1196. tempFieldNameString.Append("" + property.Key + ",");
  1197. tempValueVariable.Append("@" + property.Key + ",");
  1198. SqlParameter parameter = new SqlParameter("@" + property.Key, propertyValue);
  1199. parameterlist.Add(parameter);
  1200. }
  1201. }
  1202. if (tempFieldNameString.ToString().LastIndexOf(',') == tempFieldNameString.Length - 1)
  1203. {
  1204. tempFieldNameString.Remove(tempFieldNameString.Length - 1, 1);
  1205. }
  1206. //去除结尾多余的“,”
  1207. if (tempValueVariable.ToString().LastIndexOf(',') == tempValueVariable.Length - 1)
  1208. {
  1209. tempValueVariable.Remove(tempValueVariable.Length - 1, 1);
  1210. }
  1211. strSql.Append("insert into " + this.TableName + "(");
  1212. strSql.Append("" + tempFieldNameString.ToString() + ")");
  1213. strSql.Append(" values (");
  1214. strSql.Append("" + tempValueVariable.ToString() + ")");
  1215. strSql.Append(";select @@IDENTITY");
  1216. SqlParameter[] parameters = parameterlist.ToArray();
  1217. return new CommandInfo(strSql.ToString(), parameters, type);
  1218. }
  1219. public object GetAddCommandInfoByEntity(T date, string overlookFieldList = "ID")
  1220. {
  1221. return GetAddCommandInfoByEntity(date, overlookFieldList, EffentNextType.None);
  1222. }
  1223. public object GetUpdateCommandInfoByEntity(T date, string filterFieldName = "ID", string operators = "=", string overlookFieldList = "ID", string whereStr = null)
  1224. {
  1225. return GetUpdateCommandInfoByEntity(date, filterFieldName, operators, overlookFieldList, whereStr, EffentNextType.None);
  1226. }
  1227. #endregion
  1228. /// <summary>
  1229. /// 转Json数据为Model
  1230. /// </summary>
  1231. /// <typeparam name="T"></typeparam>
  1232. /// <param name="json"></param>
  1233. /// <returns></returns>
  1234. public static T JsonToModelByEntity(string json)
  1235. {
  1236. T t = Activator.CreateInstance<T>();
  1237. T obj = (T)Newtonsoft.Json.JsonConvert.DeserializeObject(json, t.GetType());
  1238. return obj;
  1239. }
  1240. /// <summary>
  1241. /// 分页查询记录
  1242. /// </summary>
  1243. /// <returns></returns>
  1244. public DataSet PagingQueryDataTable(string _pageTableName, string _QueryFieldName, string _OrderStr, string _QueryCondition, int _PageSize, int _PageIndex, out int _TotalCount)
  1245. {
  1246. SqlParameter[] parameters = {
  1247. new SqlParameter("@TableName", SqlDbType.VarChar , 2000),
  1248. new SqlParameter("@ReFieldsStr" , SqlDbType.VarChar , 2000),
  1249. new SqlParameter("@OrderString", SqlDbType.VarChar , 2000 ),
  1250. new SqlParameter("@WhereString", SqlDbType.VarChar, 2000),
  1251. new SqlParameter("@PageSize", SqlDbType.Int),
  1252. new SqlParameter("@PageIndex", SqlDbType.Int),
  1253. new SqlParameter("@TotalRecord", SqlDbType.Int)
  1254. };
  1255. parameters[0].Value = _pageTableName;
  1256. parameters[1].Value = _QueryFieldName;
  1257. parameters[2].Value = _OrderStr;
  1258. parameters[3].Value = _QueryCondition;
  1259. parameters[4].Value = _PageSize;
  1260. parameters[5].Value = _PageIndex;
  1261. parameters[6].Direction = ParameterDirection.Output;
  1262. DataSet ds = LYFZ.Helper.SQLHelper.RunProcedure("PROCE_SQL2005PAGECHANGE", parameters, _pageTableName + "_ds",this._DBConn.GetDBConnectionString());
  1263. _TotalCount = Convert.ToInt32(parameters[6].Value);
  1264. //if (_TotalCount == 0)
  1265. //{
  1266. // _PageCount = 0;
  1267. //}
  1268. //else
  1269. //{
  1270. // _PageCount = _TotalCount % _PageSize == 0 ? _TotalCount / _PageSize : _TotalCount / _PageSize + 1;
  1271. //}
  1272. return ds;
  1273. }
  1274. }
  1275. #region 杨云奕添加 17-04-09 反射助手,用于泛型实体的反射操作
  1276. internal static class ReflectionHelper
  1277. {
  1278. private static readonly ConcurrentDictionary<Type, Dictionary<string, PropertyInfo>> _cachedProperties = new ConcurrentDictionary<Type, Dictionary<string, PropertyInfo>>();
  1279. /// <summary>
  1280. /// 得到实体反射的表达式
  1281. /// </summary>
  1282. /// <typeparam name="T"></typeparam>
  1283. /// <param name="expression"></param>
  1284. /// <returns></returns>
  1285. public static string GetPropertyNameFromExpression<T>(Expression<Func<T, object>> expression)
  1286. {
  1287. string propertyPath = null;
  1288. if (expression.Body is UnaryExpression)
  1289. {
  1290. var unaryExpression = (UnaryExpression)expression.Body;
  1291. if (unaryExpression.NodeType == ExpressionType.Convert)
  1292. propertyPath = unaryExpression.Operand.ToString();
  1293. }
  1294. if (propertyPath == null)
  1295. propertyPath = expression.Body.ToString();
  1296. propertyPath = propertyPath.Replace(expression.Parameters[0] + ".", string.Empty);
  1297. return propertyPath;
  1298. }
  1299. public static List<string> GetPropertyNamesFromExpressions<T>(Expression<Func<T, object>>[] expressions)
  1300. {
  1301. var propertyNames = new List<string>();
  1302. foreach (var expression in expressions)
  1303. {
  1304. var propertyName = GetPropertyNameFromExpression(expression);
  1305. propertyNames.Add(propertyName);
  1306. }
  1307. return propertyNames;
  1308. }
  1309. public static object GetPropertyValue(object item, PropertyInfo property)
  1310. {
  1311. var value = property.GetValue(item, null);
  1312. return value;
  1313. }
  1314. public static object GetPropertyValue(object item, string propertyName)
  1315. {
  1316. PropertyInfo property;
  1317. foreach (var part in propertyName.Split('.'))
  1318. {
  1319. if (item == null)
  1320. return null;
  1321. var type = item.GetType();
  1322. property = type.GetProperty(part);
  1323. if (property == null)
  1324. return null;
  1325. item = GetPropertyValue(item, property);
  1326. }
  1327. return item;
  1328. }
  1329. public static object GetPropertyValueDynamic(object item, string name)
  1330. {
  1331. var dictionary = (IDictionary<string, object>)item;
  1332. return dictionary[name];
  1333. }
  1334. public static Dictionary<string, PropertyInfo> GetProperties(Type type)
  1335. {
  1336. var properties = _cachedProperties.GetOrAdd(type, BuildPropertyDictionary);
  1337. return properties;
  1338. }
  1339. private static Dictionary<string, PropertyInfo> BuildPropertyDictionary(Type type)
  1340. {
  1341. var result = new Dictionary<string, PropertyInfo>();
  1342. var properties = type.GetProperties();
  1343. foreach (var property in properties)
  1344. {
  1345. result.Add(property.Name.ToLower(), property);
  1346. }
  1347. return result;
  1348. }
  1349. public static bool IsList(object item)
  1350. {
  1351. if (item is ICollection)
  1352. return true;
  1353. return false;
  1354. }
  1355. public static bool IsNullable(PropertyInfo property)
  1356. {
  1357. if (property.PropertyType.IsGenericType &&
  1358. property.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>))
  1359. return true;
  1360. return false;
  1361. }
  1362. /// <summary>
  1363. /// Includes a work around for getting the actual type of a Nullable type.
  1364. /// </summary>
  1365. public static Type GetPropertyType(PropertyInfo property)
  1366. {
  1367. if (IsNullable(property))
  1368. return property.PropertyType.GetGenericArguments()[0];
  1369. return property.PropertyType;
  1370. }
  1371. public static object GetDefault(Type type)
  1372. {
  1373. if (type.IsValueType)
  1374. return Activator.CreateInstance(type);
  1375. return null;
  1376. }
  1377. public static bool IsBasicClrType(Type type)
  1378. {
  1379. if (type.IsEnum
  1380. || type.IsPrimitive
  1381. || type.IsValueType
  1382. || type == typeof(string)
  1383. || type == typeof(DateTime))
  1384. return true;
  1385. return false;
  1386. }
  1387. public static bool IsCustomEntity<T>()
  1388. {
  1389. var type = typeof(T);
  1390. if (type.IsClass && Type.GetTypeCode(type) == TypeCode.Object)
  1391. return true;
  1392. return false;
  1393. }
  1394. }
  1395. #endregion
  1396. }