示例#1
0
文件: Area.cs 项目: johnval990/ISOA
        public static List<Area> GetAllAreas()
        {
            AreaCollection list = new AreaCollection();
            list.OrderByAsc(Area.Columns.Description);
            list.Load();

            return list.ToList();
        }