通过反射生成SQL的例子
全文摘自http://www.cnblogs.com/g1mist/p/3227290.html,很好的一个实例。
反射提供了封装程序集、模块和类型的对象。您可以使用反射动态地创建类型的实例,将类型绑定到现有对象,或从现有对象中获取类型。然后,可以调用类型的方法或访问其字段和属性。
1.先建立实体类
用户实体类:
1
2
3
4
5
6
7
8
9
|
public class User { public int id { get ; set ; } public string UserName { get ; set ; } public string Password { get ; set ; } public int Age { get ; set ; } public string PhoneNumber { get ; set ; } public string Address { get ; set ; } } |
书籍实体类:
1
2
3
4
5
6
7
8
|
public class Book { public int id { set ; get ; } public string BookName { get ; set ; } public string ISBN { set ; get ; } public string Author { set ; get ; } public double Price { set ; get ; } } |
2.通过反射技术来生成Insert语句(举个例子而已,只生成Insert语句)
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
29
30
31
32
33
34
35
36
37
38
39
|
/// <summary> /// 泛型方法,反射生成SQLInsert语句 /// </summary> /// <typeparam name="T">实体类型</typeparam> /// <param name="entity">实体对象</param> /// <returns></returns> public string CreateInsertSQL<T>(T entity) { //1.先获取实体的类型描述 Type type = entity.GetType(); //2.获得实体的属性集合 PropertyInfo[] props = type.GetProperties(); //实例化一个StringBuilder做字符串的拼接 StringBuilder sb = new StringBuilder(); sb.Append( "insert into " + type.Name + " (" ); //3.遍历实体的属性集合 foreach (PropertyInfo prop in props) { //4.将属性的名字加入到字符串中 sb.Append(prop.Name + "," ); } //**去掉最后一个逗号 sb.Remove(sb.Length - 1, 1); sb.Append( " ) values(" ); //5.再次遍历,形成参数列表"(@xx,@xx@xx)"的形式 foreach (PropertyInfo prop in props) { sb.Append( "@" + prop.Name + "," ); } //**去掉最后一个逗号 sb.Remove(sb.Length - 1, 1); sb.Append( ")" ); return sb.ToString(); } |
3.测试
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class Program { static void Main( string [] args) { //调用ReflationCreateSQL类中的CreateInsertSQL方法 string sql = new ReflationCreateSQL().CreateInsertSQL( new User()); string sql1 = new ReflationCreateSQL().CreateInsertSQL( new Book()); Console.WriteLine(sql.ToString()); Console.WriteLine(sql1.ToString()); Console.WriteLine( "Press any key to continue . . ." ); Console.ReadLine(); } } |
结果:
但是,我们发现id是主键,假设id是自增长的,我们生成的SQL(Insert)语句中就不应该有id,在这里我用自定义Attribute的方法来解决这个问题。
4.先新建一个类,继承Attribute类
1
2
3
4
|
public class KEYAttribute : Attribute { } |
这个类仅此而已就够了。
5.在实体类中的id这个字段上加上[KEY]标记
1
2
3
4
5
6
7
8
9
|
public class Book { [KEY] public int id { set ; get ; } public string BookName { get ; set ; } public string ISBN { set ; get ; } public string Author { set ; get ; } public double Price { set ; get ; } } |
1
2
3
4
5
6
7
8
9
10
|
public class User { [KEY] public int id { get ; set ; } public string UserName { get ; set ; } public string Password { get ; set ; } public int Age { get ; set ; } public string PhoneNumber { get ; set ; } public string Address { get ; set ; } } |
6.加好标记之后,我们只需要这CreateInsertSQL<T>(T entity)这个方法中的两个foreach循环体中加一些判断即可
1
2
3
4
5
6
7
8
9
10
11
12
|
foreach (PropertyInfo prop in props) { //获取用户自定义标记集合 object [] attrs = prop.GetCustomAttributes( typeof (KEYAttribute), true ); //如果属性上有自定义标记KEYAttribute,退出本次循环 if (attrs.Length > 0) { continue ; } //将属性的名字加入到字符串中 sb.Append(prop.Name + "," ); } |
1
2
3
4
5
6
7
8
9
|
foreach (PropertyInfo prop in props) { object [] attrs = prop.GetCustomAttributes( typeof (KEYAttribute), true ); if (attrs.Length > 0) { continue ; } sb.Append( "@" + prop.Name + "," ); } |
7.测试
通过反射生成SQL的例子的更多相关文章
- ASP.NET通过反射生成sql语句
最近对接一个接口,需要通过xml序列化成实体后添加额外信息后批量插入数据库,需要手动拼sql.因为涉及多张表,拼凑很麻烦而且容易出错,所以写了两个工具方法来生成sql,先写到博客里面,以便以后不时之需 ...
- 反射生成SQL语句入门
今天我们来学习学习通过反射技术来生成SQL语句. 反射提供了封装程序集.模块和类型的对象.您可以使用反射动态地创建类型的实例,将类型绑定到现有对象,或从现有对象中获取类型.然后,可以调用类型的方法或访 ...
- 利用反射生成SQL语句
// 修改学员信息的方法 public bool ModifyStudent(MODEL.Students model) { // 利用反映获取类对所有属性,用来动态生成SQL语句 StringBui ...
- 4、注解反射生成SQL语句
.任务说明 ①有一张用户表,字段包括:用户ID.用户名.昵称.年龄.性别.所在城市.邮箱.手机号: ②使用java注解来对用户表的每个字段或字段的组合条件进行动态生成S ...
- 通过自定义注解反射生成SQL语句
----------------------------------------Program.cs---------------------------------------- using Sys ...
- C# - 通过自定义注解反射生成SQL语句[转]
转自http://blog.163.com/jong_cai/blog/static/87028045200902033553581/ -------------------------------- ...
- 反射生成SQL语句
public static int Reg(Model ml) { bool b = true; Visit vt = new Visit(); StringBuilder builder = new ...
- java注解实例-反射生成sql
定义描述用户表的注解: package dao; import java.lang.annotation.ElementType; import java.lang.annotation.Retent ...
- 根据反射生成SQL语句
/** * 基础查询语句 * 返回类型的属性字符串Sql * @author: InkYi * 修改时间:2016年5月11日 - 上午10:06:00<br/> * 功能说明:<b ...
随机推荐
- POJ 1742 Coins (多重背包)
Coins Time Limit: 3000MS Memory Limit: 30000K Total Submissions: 28448 Accepted: 9645 Descriptio ...
- 框架搭建资源 (一) V(视图)C(控制)模式
pom.xml <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncodin ...
- IEnumerable,IQueryable的区别
IEnumerable,IQueryable之前世今生 IEnumerable<T>在.Net2.0中我们已经很熟悉了.你想要利用Foreach迭代吗?实现IEnumerable<T ...
- 你也可以玩转Skype -- 基于Skype API开发外壳程序入门
原文:你也可以玩转Skype -- 基于Skype API开发外壳程序入门 Skype是目前这个星球上最厉害的IM+VOIP软件,Skype现在已经改变了全球2.8亿人的生活方式.你,值得拥有! :) ...
- xml:Invalid byte 2 of 2-byte UTF-8 sequence
xml解析错误:Invalid byte 2 of 2-byte UTF-8 sequence 在做接口解析时候出现的错误:Invalid byte 2 of 2-byte UTF-8 sequenc ...
- AJAX及其跨域的主要解决方法
AJAX = Asynchronous JavaScript andXML(异步的 JavaScript 和 XML).通过在后台与服务器进行少量数据交换,使网页实现异步更新.要明白异步交互可以通过同 ...
- Hadoop上传文件的报错
baidu了很多,都说防火墙,datanode没有正常启动的问题,可是检查了都是正常,后来还是在老外的网站上找到了解决的方法 修改了/etc/security/limits.conf文件,上传成功 这 ...
- Linux 解决文件删除,但并没有改变磁盘可用性
昨天收到zabbix警报邮件,有一个server的 /home 文件夹的使用达成90%以上.检查,发现MongoDB数据文件到这个文件夹.高.而这个MongoDB的数据如今又都不用了.于是就直接把它的 ...
- hibernate 一对多关联关系(具体分析)
在领域模型中, 类与类之间最普遍的关系就是关联关系. 在 UML 中, 关联是有方向的. 以 Customer 和 Order 为例: 一个用户能发出多个订单, 而一个订单仅仅能属于一个客户. 从 ...
- ThinkPHP 3.2 开放 cache注缓存,过滤非法字符
打开缓存配置文件 /Application/Common/conf/cache.php源代码如下面: <?php return array( //'配置项'=>'配置值' 'LAYOUT_ ...