摘要:
之前在博客园看了《一句代码实现批量数据绑定》这篇文章的代码,才知道知道反射可以用来获取类的属性等信息。然后想到之前用三层架构+存储过程来做网站的时候,数据访问层的很多代码都是重复的,都是根据实体类的结构,填充好参数,然后调用相应的存储过程。于是就写了这个数据访问层的基类:public class DAL<T> where T : class, new() { private static string TypeName; protected SQLHelper sqlExecuter; protected DAL() { TypeName = typeof(T).Name; sql 阅读全文