摘要: 待。。。。 阅读全文
posted @ 2013-03-08 22:03 super 86 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 微软宣布即将到来的Entity Framework 5相比EF4在性能上会有67%的提升。根据ADO.NET团队博客上的介绍,使用这个版本EF的应用程序之所以性能提升,要部分归功于LINQ to Entities查询的自动编译。自动编译功能一直都是EF框架中的一部分,只是需要开发人员调用CompiledQuery.Compile才能够使用。现在,EF 5会自动处理这步工作:当某个查询首次运行时,它会被编译并缓存,从而使得后续请求可以避免重新完全编译。EF 4为ESQL(嵌入式SQL)查询使用了编译后的查询缓存,而EF 5将该功能扩展到了LINQ to Entity查询中。一旦缓冲中超过800个 阅读全文
posted @ 2013-03-08 20:58 super 86 阅读(152) 评论(0) 推荐(0) 编辑
摘要: Error Info:“An object with the same key already exists in the ObjectStateManager. The ObjectStateManager cannot track multiple objects with the same key”.Explanation:You must check if an entity with the same key is already tracked by the context and modify that entity instead of attaching the curr.. 阅读全文
posted @ 2013-03-08 20:53 super 86 阅读(445) 评论(0) 推荐(0) 编辑