首页 > 代码库 > 一个简易的反射类库NMSReflector
一个简易的反射类库NMSReflector
转自:http://blog.csdn.net/lanx_fly/article/details/53914338
背景简介
以前看过一些代码,是简单的读取SqlReader然后赋值给Model,我不是不赞同这种做法,只是看到大篇幅的赋值操作真的有点浪费时间和精力,尤其是一些老项目居多。我看到的还好,多的也就60多个字段且不用其他ORM,如果涉及到变更的话,那么对维护人员来说可能不仅仅是眼力活甚至还是....体力活。另外就是表格的操作,因为鄙人之前也是写过类似的项目,列名对应着Model属性名,一个不差,隐隐觉得它们之间应该联系起来,所以想能不能尽可能简化它的操作?可能是自己做得项目太少,只能想到反射这种方法,但是反射的性能大家也都了解,大量的反射赋值耗时可以慢到你眨几下眼睛,但这对程序来说我觉得是一场灾难。因此结合反射发出的方法写了这个库,如果能给大家在项目上带来一些便利我也就知足了。
案例1:
[csharp] view plain copy print?
- public class Student : INMSReflector {
- public string Name;
- public string Description { get; set; }
- public static string StaticField;
- public static string StaticProperty { get; set; }
- }
引用步骤:
[html] view plain copy print?
- Step1 : 引用类库.
- Step2 : using NMSReflector.
- Step3 : 将你的类实现INMSReflector接口;(当然了,如果你嫌麻烦,可以改一下源码,在ModelOperator.cs中).
- Step4 : 用Create方法创建缓存. (会扫描搜索入口程序集的所有类)
由于类库中对object类型做了扩展,因此对象实例可以调用扩展方法。
1、EmitSet(string propertyName,object value) 为对象的字段或属性赋值
2、EmitGet(string propertyName) 获取对象某字段或者属性值
用法:
[csharp] view plain copy print?
- ModelOperator.Create();
- Student t = new Student();
- //普通字段
- t.Name = "小明";
- t.EmitSet("Name", "小明胸前的红领巾更加鲜艳了!");
- Console.WriteLine(t.Name);
- Console.WriteLine(t.EmitGet("Name"));
- //普通属性
- t.EmitSet("Description", "他爱着小刚");
- Console.WriteLine(t.Description);
- Console.WriteLine(t.EmitGet("Description"));
- //静态字段
- t.EmitSet("StaticFiled", "是他挨着小刚");
- Console.WriteLine(Student.StaticField);
- Console.WriteLine(t.EmitGet("StaticField"));
- //静态属性
- t.EmitSet("StaticProperty", "刚才打错了");
- Console.WriteLine(Student.StaticProperty);
- Console.WriteLine(t.EmitGet("StaticProperty"));
结果:
案例2:
支持Column标签
[csharp] view plain copy print?
- public class Student : INMSReflector
- {
- public string Name;
- [Column("Note")]
- public string Description { get; set; }
- public static string StaticField;
- public static string StaticProperty { get; set; }
- }
注意:
[html] view plain copy print?
- 这里的标签是来自于System.ComponentModel.DataAnnotations.Schema;
- 所以需要using System.ComponentModel.DataAnnotations.Schema;
用法:
无论传标签设置的名字还是属性名,都可以赋值或者获取值。
[csharp] view plain copy print?
- ModelOperator.Create();
- Student t = new Student();
- t.EmitSet("Note", "设置标签");
- Console.WriteLine(t.Description);
- Console.WriteLine(t.EmitGet("Note"));
结果:
其他:
ModelOperator类提供了更多的操作函数。
[csharp] view plain copy print?
- 与object的扩展方法有所不同,第一个参数需要把实例传进去
- //获取实例t的某字段和属性的值
- object Get<T>(T t, string propertyName)
- //设置实例t的某字段和属性的值
- void Set<T>(T t, string propertyName, object value)
- //获取类型T的某字段和属性的类型
- Type GetType<T>(string propertyName)
- //获取类型T的设置方法缓存
- Dictionary<string, Action<object, object>> GetSetCache<T>()
- //获取类型T的获取方法缓存
- Dictionary<string, Func<object, object>> GetGetCache<T>()
- //获取类型T的属性字段类型缓存
- Dictionary<string, Type> GetTypeCache<T>()
- //获取类型T的标签与属性字段缓存
- Dictionary<string, string> GetMapCache<T>()
性能测试:
项目地址:https://github.com/NMSLanX/NMSReflector
一个简易的反射类库NMSReflector
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。