摘要:
前两年帮朋友 做了个网吧管理软件,采用动软的三层架构 sql语句生成的。最近因功能变更 要改动,而我这段正在做asp.net mvc +ef+autofac的一个电商网站。索性 就把原来的底层全重新了套用了我现在的架构 EF6.0+autofac+三层架构,上层的asp.net没有变。改完后发现交班 阅读全文
摘要:
I stumbled upon the following two articles First and Second in which the author states in summary that ORM Entities and Domain Entities shouldn't be m 阅读全文
摘要:
一, 二, 三, 1.DataTable到List<T>的转换 public static List<T> DataTableToT<T>(DataTable source) where T : class, new() { List<T> itemlist = null; if (source = 阅读全文