• table 转实体


     public class Table2Entity<T> where T : class,new()
        {
            public static List<T> GetEntitys(DataTable dt)
            {
                Dictionary<string, string> columns = new Dictionary<string, string>();
                foreach (DataColumn item in dt.Columns)
                {
                    columns.Add(item.ColumnName.Trim().ToLower(), item.ColumnName);
                }
                List<T> result = new List<T>();
                var proptetis = typeof(T).GetProperties(BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Public | BindingFlags.DeclaredOnly);
                foreach (DataRow dr in dt.Rows)
                {
                    T obj = new T();
                    foreach (var item in proptetis)
                    {
                        var attributes = item.GetCustomAttributes(typeof(RenameAttribute), true);
                        var columnName = (attributes != null && attributes.Length > 0) ? ((RenameAttribute)(attributes[0])).Name.Trim().ToLower() : item.Name.Trim().ToLower();
                        if (columns.Keys.Contains(columnName))
                        {
                            var mt = item.GetSetMethod(true);
                            var value = dr[columns[columnName]];
                            if (value == null || value == DBNull.Value || string.IsNullOrWhiteSpace(value.ToString())) continue;
                            if (item.PropertyType == typeof(string))
                                mt.Invoke(obj, new object[] { value.ToString() });
                            else if (item.PropertyType == typeof(int) || item.PropertyType == typeof(int?))
                                mt.Invoke(obj, new object[] { Convert.ToInt32(value) });
                            else if (item.PropertyType == typeof(long) || item.PropertyType == typeof(long?))
                                mt.Invoke(obj, new object[] { Convert.ToInt64(value) });
                            else if (item.PropertyType == typeof(double) || item.PropertyType == typeof(double?))
                                mt.Invoke(obj, new object[] { Convert.ToDouble(value) });
                            else if (item.PropertyType == typeof(decimal) || item.PropertyType == typeof(decimal?))
                                mt.Invoke(obj, new object[] { Convert.ToDecimal(value) });
                            else if (item.PropertyType == typeof(DateTime) || item.PropertyType == typeof(DateTime?))
                                mt.Invoke(obj, new object[] { Convert.ToDateTime(value) });
                            else if (item.PropertyType == typeof(float) || item.PropertyType == typeof(float?))
                                mt.Invoke(obj, new object[] { float.Parse(value.ToString()) });
                            else if (item.PropertyType == typeof(bool))
                                mt.Invoke(obj, new object[] { bool.Parse(value.ToString()) });
                            else if (item.PropertyType.BaseType == typeof(System.Enum))
                            {
                                mt.Invoke(obj, new object[] { Convert.ToInt32(value) });
                            }
                        }
                    }
                    result.Add(obj);
                }
                return result;
            }
        }
  • 相关阅读:
    监控视频长度压缩算法
    获取客户端IP
    常用API接口签名验证参考
    .NET发布的程序代码防止反编译
    SQL Server 获取日期时间并格式化
    SQL Server2008R2可疑状态恢复
    限制网站报错信息暴露在外(客户端可以查看到)
    发布网站时线上网站务必把debug设置false
    IIS上的项目网站关闭Http请求中的Trace和OPTIONS
    使用uploadify上传大文件报 IO error #2038错误的解决方案
  • 原文地址:https://www.cnblogs.com/jasonlwings/p/6808372.html
Copyright © 2020-2023  润新知