/*************************************************************************************** 文 件 名: DalUtiles.cs* 描 述: * * 版 本: V1.0* 创 建 者: JackieZheng* 创建时间: 2022/10/16 下午 05:42* ======================================* 历史更新记录* 版本:V 修改时间: 修改人:* 修改内容:* ======================================
*************************************************************************************/
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DBUtility;
using Model;
using System.Configuration;namespace DAL
{public class DalUtiles{/// <summary>/// DataRow 转 Model 对象/// </summary>/// <typeparam name="T"></typeparam>/// <param name="row"></param>/// <returns></returns>public static T DataRow2Model<T>(DataRow row){T t = System.Activator.CreateInstance<T>();var ModelType = typeof(T);var Properties = ModelType.GetProperties();foreach (var Propertie in Properties){if (Propertie.CanRead && Propertie.CanWrite){if (row.Table.Columns.Contains(Propertie.Name) && row[Propertie.Name] != DBNull.Value){Propertie.SetValue(t, row[Propertie.Name], null);}else{Propertie.SetValue(t, null);}}}return t;}/// <summary>/// DataTable 转 Modle List/// </summary>/// <typeparam name="T"></typeparam>/// <param name="table"></param>/// <returns></returns>public static List<T> DataTable2ModelList<T>(DataTable table){var list = new List<T>();foreach (DataRow row in table.Rows){list.Add(DataRow2Model<T>(row));}return list;}}
}