类库说明文档
JHDataTableToListTmodel Method |
将包含对象的数据表格转换为指定的对象实体列表,异常将返回 null
Namespace: DCSoft.Utility.Data
Assembly: DCSoft.Utility (in DCSoft.Utility.dll) Version: 0.0.0.0 (1.0.0.0)
Syntax
C#
public static IList<Tmodel> ToList<Tmodel>( DataTable dt ) where Tmodel : class, new()
Parameters
- dt
- Type: System.DataDataTable
要转换的数据表格
Type Parameters
- Tmodel
- 最终要得到的转换对象类型,必须提供无参构造函数
Return Value
Type: IListTmodel返回转换后的对象实体列表
See Also