zoukankan      html  css  js  c++  java
  • 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'.

    解决方法:数据类型不对。再模型中把数据类型修改一下即可。

    宣言:在此记录自己学习过程中的心得体会,同时积累经验,不断提高自己! 文章未经说明均属原创,学习笔记可能有大段的引用,一般会注明参考文献。 欢迎大家留言交流。转载请注明出处。
  • 相关阅读:
    c#线程带参数
    svn自动update到指定目录
    204. 计数质数
    178. 分数排名
    387. 字符串中的第一个唯一字符
    374. 猜数字大小
    371. 两整数之和
    350. 两个数组的交集 II
    326. 3的幂
    219. 存在重复元素 II
  • 原文地址:https://www.cnblogs.com/vegetable/p/5609231.html
Copyright © 2011-2022 走看看