上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页
摘要: http://blog.csdn.net/lyjcn/article/details/4432833 阅读全文
posted @ 2012-09-21 15:52 多远才是未来 阅读(103) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/aigongsi/archive/2012/09/21/2696773.html 阅读全文
posted @ 2012-09-21 15:19 多远才是未来 阅读(85) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/hs0014/archive/2010/04/20/1716304.html如果你说的是.net的动态delegate技术,参考这篇文章:http://www.cnblogs.com/zhenyulu/articles/93152.html如果说的是设计模式中的动态proxy,参考这篇文章:http://www.cnblogs.com/flyingchen/archive/2006/10/24/538757.html 阅读全文
posted @ 2012-09-20 14:38 多远才是未来 阅读(110) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/zhoushao/article/details/655387缺省情况(默认情况)。 阅读全文
posted @ 2012-09-20 14:22 多远才是未来 阅读(180) 评论(0) 推荐(0) 编辑
摘要: Edit Post-build中输入如下命令。if not exist $(TargetDir)config md $(TargetDir)configcopy $(SolutionDir)AOTT.GateWay.Reporting.Hosting\config $(TargetDir)configif not exist $(TargetDir)config\castle md $(TargetDir)config\castlecopy $(SolutionDir)AOTT.GateWay.Reporting.Hosting\config\castle $(TargetDir)config 阅读全文
posted @ 2012-09-20 14:09 多远才是未来 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 关于Nhibernate 延迟加载必须处在同一个连接,即同一个Session会话。1.var policyId = this.policyGroupingEntityRepository.FindSingleByExpression(p => p.PolciyGroup.PolicyId == entity.PolicyId).PolciyGroup.PolicyId;2.var policy=this.policyGroupingEntityRepository.FindSingleByExpression(p => p.PolciyGroup.PolicyId == entit 阅读全文
posted @ 2012-08-29 18:40 多远才是未来 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 1,http://www.jdon.com/AOPdesign/jdon-aop.htm2,http://wayfarer.cnblogs.com/articles/241024.html 阅读全文
posted @ 2012-08-16 11:55 多远才是未来 阅读(161) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/luminji/archive/2011/05/13/2044801.html“Lambda 表达式”是一个匿名函数,它可以包含表达式和语句,并且可用于创建委托或表达式树类型。所有 Lambda 表达式都使用 Lambda 运算符=>,该运算符读为“goes to”。该 Lambda 运算符的左边是输入参数(如果有),右边包含表达式或语句块。Lambda 表达式x => x * x读作“x goes to x times x”。可以将此表达式分配给委托类型,如下所示:delegate int del(int i);static void 阅读全文
posted @ 2012-08-10 10:11 多远才是未来 阅读(209) 评论(0) 推荐(0) 编辑
摘要: http://www.rrting.com/English/xxzl/134695/英语翻译器:http://www.worldlingo.com/zh/microsoft/computer_translation.html 阅读全文
posted @ 2012-08-07 16:25 多远才是未来 阅读(123) 评论(0) 推荐(0) 编辑
摘要: public TEntity FindSingleByExpression(Expression<Func<TEntity, bool>> expression) { var session = this.OpenSession(); // session.Clear(); //session.Evict(entity);有时会不起作用,session.Clear();反而可以代研究 var entity = session.Linq<TEntity>().FirstOrDefault(expression); session.Evict(entity); 阅读全文
posted @ 2012-08-07 15:51 多远才是未来 阅读(257) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页