DataRow/DataTable 与实体类之间的转换

  在程序开发当中,最初的数据库操作我们一般都返回DataRow、DataTable等,对于一般开发人员来说都是比较清楚的,易使用,好理解。当然可以在“高深”一下。我们可以将返回的DataRow、DataTable做一下转换,转换成对应的实体。使用反射技术可以完成此转换。

  代码如下:

ContractedBlock.gif ExpandedBlockStart.gif 代码
 
   
class ProcessEntity
{
/// <summary>
/// 填充对象
/// </summary>
/// <param name="dr"></param>
/// <param name="entity"></param>
public static BaseEntity ReceiveEntity(DataRow dr, BaseEntity entity)
{
if (dr == null )
return null ;

BaseEntity baseEntity
= (BaseEntity)Activator.CreateInstance(entity.GetType());
foreach (PropertyInfo propertyInfo in entity.GetType().GetProperties())
{
try
{
baseEntity.GetType().GetProperty(propertyInfo.Name).SetValue(baseEntity, dr[propertyInfo.Name],
null );
}
catch { }
}

return baseEntity;
}
/// <summary>
/// 填充对象列表
/// </summary>
/// <param name="ds"></param>
/// <param name="entity"></param>
/// <returns></returns>
public static List < BaseEntity > ReceiveEntity(DataSet ds, BaseEntity entity)
{
if ( ! (ds != null && ds.Tables.Count > 0 ))
return null ;

List
< BaseEntity > entityList = new List < BaseEntity > ();
foreach (DataRow dr in ds.Tables[ 0 ].Rows)
{
BaseEntity baseEntity
= new BaseEntity();
baseEntity
= ReceiveEntity(dr, entity);
entityList.Add(baseEntity);
}

return entityList;
}
}

  实现转换的目的主要是为了方便程序开发使用,比如忘记数据库字段名称,不熟悉等。

下载源代码:文件下载

转载于:https://www.cnblogs.com/yangboyu/archive/2010/07/04/1770985.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值