EntityFramework使用中的一些Bug
Posted stay hungry stay foolish
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EntityFramework使用中的一些Bug相关的知识,希望对你有一定的参考价值。
1. No Entity Framework provider found for the ADO.NET provider
解决方法:添加 EntityFramework.SqlServer.dll
2.An error occurred while updating the entries. See the inner exception for details.
解决方法: 模型和数据库中表不对应,在模型文件中选择从模型生成数据库或者从数据库生成模型,更新一下即可。注意的是如果数据库中有数据,选择从模型生成数据库数据会丢失,这时候建议选择从数据库生成模型。
3.The type ‘Edm.String‘ of the member ‘CreatedTime‘ in the conceptual side type ‘pmisModel.Dept‘ does not match with the type ‘System.DateTime‘ of the member ‘CreatedTime‘ on the object side type ‘SMY.PMIS.Model.Dept‘.
解决方法:数据类型不对。再模型中把数据类型修改一下即可。
以上是关于EntityFramework使用中的一些Bug的主要内容,如果未能解决你的问题,请参考以下文章
EntityFramework监控sql和EntityFramework中的事务
EntityFramework 与 NHibernate 中的关系修复