ado.net mysql 转义,C# ADO.NET+反射读取数据库并转换为List

public List QueryByADO(string connStr, string sql) where T : class, new()

{

using (SqlConnection conn = new SqlConnection())

{

try

{

conn.ConnectionString = connStr;

conn.Open();

SqlDataAdapter myda = new SqlDataAdapter(sql, conn);

DataTable dt = new DataTable();

myda.Fill(dt);

return ConvertToModel(dt);

}

catch (Exception ex)

{

throw ex;

}

finally

{

conn.Close();

}

}

}

///

/// 将DataTable数据源转换成实体类

///

public List ConvertToModel(DataTable dt) where T : class, new()

{

List ts = new List();// 定义集合

foreach (DataRow dr in dt.Rows)

{

T t = new T();

PropertyInfo[] propertys = t.GetType().GetProperties();// 获得此模型的公共属性

foreach (PropertyInfo pi in propertys)

{

if (dt.Columns.Contains(pi.Name))

{

if (!pi.CanWrite) continue;

var value = dr[pi.Name];

if (value != DBNull.Value)

{

if (pi.PropertyType.FullName.Contains("System.Nullable"))

{

pi.SetValue(t, Convert.ChangeType(value, (Nullable.GetUnderlyingType(pi.PropertyType) ?? pi.PropertyType)), null);

}

else

{

switch (pi.PropertyType.FullName)

{

case "System.Decimal":

pi.SetValue(t, decimal.Parse(value.ToString()), null);

break;

case "System.String":

pi.SetValue(t, value.ToString(), null);

break;

case "System.Char":

pi.SetValue(t, Convert.ToChar(value), null);

break;

case "System.Guid":

pi.SetValue(t,value, null);

break;

case "System.Int16":

pi.SetValue(t, Convert.ToInt16(value), null);

break;

case "System.Int32":

pi.SetValue(t, int.Parse(value.ToString()), null);

break;

case "System.Int64":

pi.SetValue(t, Convert.ToInt64(value), null);

break;

case "System.Byte[]":

pi.SetValue(t, Convert.ToByte(value), null);

break;

case "System.Boolean":

pi.SetValue(t,Convert.ToBoolean(value), null);

break;

case "System.Double":

pi.SetValue(t, Convert.ToDouble(value.ToString()), null);

break;

case "System.DateTime":

pi.SetValue(t, value ?? Convert.ToDateTime(value), null);

break;

default:

throw new Exception("类型不匹配:" + pi.PropertyType.FullName);

}

}

}

}

}

ts.Add(t);

}

return ts;

}

public List QueryByADO(string connStr, string sql) where T : class, new()

{

using (SqlConnection conn = new SqlConnection())

{

try

{

conn.ConnectionString = connStr;

conn.Open();

SqlDataAdapter myda = new SqlDataAdapter(sql, conn);

DataTable dt = new DataTable();

myda.Fill(dt);

return ConvertToModel(dt);

}

catch (Exception ex)

{

throw ex;

}

finally

{

conn.Close();

}

}

}

///

/// 将DataTable数据源转换成实体类

///

public List ConvertToModel(DataTable dt) where T : class, new()

{

List ts = new List();// 定义集合

foreach (DataRow dr in dt.Rows)

{

T t = new T();

PropertyInfo[] propertys = t.GetType().GetProperties();// 获得此模型的公共属性

foreach (PropertyInfo pi in propertys)

{

if (dt.Columns.Contains(pi.Name))

{

if (!pi.CanWrite) continue;

var value = dr[pi.Name];

if (value != DBNull.Value)

{

if (!pi.PropertyType.IsGenericType)

{

//非泛型

pi.SetValue(t, value==null ? null : Convert.ChangeType(value, pi.PropertyType), null);

}

else

{

//泛型Nullable<>

Type genericTypeDefinition = pi.PropertyType.GetGenericTypeDefinition();

if (genericTypeDefinition == typeof(Nullable<>))

{

pi.SetValue(t, value == null ? null : Convert.ChangeType(value, Nullable.GetUnderlyingType(pi.PropertyType)), null);

}

}

}

}

}

ts.Add(t);

}

return ts;

}

//参考连接 https://blog.csdn.net/xiaohan2826/article/details/8536074

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值