VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • C#教程之轻量ORM-SqlRepoEx (三)Select语句

一、示例用数据库为Northwind数据库,可在百度网盘下载

https://pan.baidu.com/s/1er0Mm48kUfeAsYkSW6DfnA 密码:r7pm

 

二、如何初始化SqlRepoEx请参看上一篇博文《轻量ORM-SqlRepoEx (二)初始化SqlRepoEx》

 

三、生成示例用类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
public class Customers
    {
        #region  业务属性定义
 
        public string CustomerID { getset; }
 
        public string CompanyName { getset; }
 
        public string ContactName { getset; }
 
        public string ContactTitle { getset; }
 
        public string Address { getset; }
 
        public string City { getset; }
 
        public string Region { getset; }
 
        public string PostalCode { getset; }
 
        public string Country { getset; }
 
        public string Phone { getset; }
 
        public string Fax { getset; }
 
        #endregion
    }