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