@ -233,7 +233,7 @@ namespace PEIS.Helper.SqlServer
return returnSql;
}
public static List<T> Select<T>(DataTable dt)
public static List<T> ConvertDataTableToEntity<T>(DataTable dt)
{
return (from DataRow row in dt.Rows select GetItem<T>(row)).ToList();