首页 > 编程 > C# > 正文

C#实现利用泛型将DataSet转为Model的方法

2020-01-24 01:36:54
字体:
来源:转载
供稿:网友

本文实例讲述了C#实现利用泛型将DataSet转为Model的方法。分享给大家供大家参考。具体如下:

因为网站需要用C#开发,习惯了java的泛型,所以看了一下C#下,也可以这样做,随便写了一个。

public static List<T> PutAllVal<T>(T entity, DataSet ds) where T : new() {  List<T> lists = new List<T>();  if (ds.Tables[0].Rows.Count > 0) {    foreach (DataRow row in ds.Tables[0].Rows) {      lists.Add(PutVal(new T(),row));    }  }  return lists;}public static T PutVal<T>(T entity, DataRow row) where T : new() {  //初始化 如果为null  if (entity == null){    entity = new T();  }  //得到类型  Type type = typeof(T);  //取得属性集合  PropertyInfo[] pi = type.GetProperties();  foreach (PropertyInfo item in pi){    //给属性赋值    if (row[item.Name] != null && row[item.Name] != DBNull.Value) {      if (item.PropertyType == typeof(System.Nullable<System.DateTime>)) {        item.SetValue(entity, Convert.ToDateTime(row[item.Name].ToString()), null);      } else {        item.SetValue(entity, Convert.ChangeType(row[item.Name], item.PropertyType), null);      }    }  }  return entity;}

希望本文所述对大家的C#程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表