Exemple #1
0
        /// <summary>
        /// 获得数据列表
        /// </summary>
        public List <Library.Model.Employee> DataTableToList(DataTable dt)
        {
            List <Library.Model.Employee> modelList = new List <Library.Model.Employee>();
            int rowsCount = dt.Rows.Count;

            if (rowsCount > 0)
            {
                Library.Model.Employee model;
                for (int n = 0; n < rowsCount; n++)
                {
                    model = dal.DataRowToModel(dt.Rows[n]);
                    if (model != null)
                    {
                        modelList.Add(model);
                    }
                }
            }
            return(modelList);
        }