/// <summary> /// 获得数据列表 /// </summary> public List <Library.Model.Role> DataTableToList(DataTable dt) { List <Library.Model.Role> modelList = new List <Library.Model.Role>(); int rowsCount = dt.Rows.Count; if (rowsCount > 0) { Library.Model.Role model; for (int n = 0; n < rowsCount; n++) { model = dal.DataRowToModel(dt.Rows[n]); if (model != null) { modelList.Add(model); } } } return(modelList); }