EF连接Mysql 表'TableDetails'中的列'IsPrimaryKey'的值为DBNull_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > EF连接Mysql 表'TableDetails'中的列'IsPrimaryKey'的值为DBNull

EF连接Mysql 表'TableDetails'中的列'IsPrimaryKey'的值为DBNull

 2017/2/17 5:34:04  海棠依旧  程序员俱乐部  我要评论(0)
  • 摘要:无法生成模型,因为存在以下异常:'System.Data.StrongTypingException:表'TableDetails'中的列'IsPrimaryKey'的值为DBNull。--->System.InvalidCastException:指定的转换无效。原文链接http://stackoverflow.com/questions/33575109/mysql-entity-the-value-for-column-isprimarykey-in-table
  • 标签:KEY 连接 SQL MySQL

无法生成模型,因为存在以下异常:'System.Data.StrongTypingException:表'TableDetails'中的列'IsPrimaryKey'的值为DBNull。class="goog-text-highlight">---> System.InvalidCastException:指定的转换无效。

原文链接http://stackoverflow.com/questions/33575109/mysql-entity-the-value-for-column-isprimarykey-in-table-tabledetails-is

 原文:

Entity Framework (version 6.1.3) and MySQL Server (>= 5.7.6)

One way to resolve the issue is,

1. Open Services (services.msc) and restart MySQL57 service.   
2. Execute the following commands in MySQL.
   use <<database name>>;
   set global optimizer_switch='derived_merge=OFF';
3. Update the .edmx.

It's a late reply. But hope it will help somebody.

Thanks.

 大致翻译:

1.重新启动mysql服务

2.打开命令列界面

set global optimizer_switch='derived_merge=OFF';

3.重新新建EF

 

发表评论
用户名: 匿名