调试了一天CODE FIRST遇到的BUG很多,记录一下解决过程。
步骤
1、安装MYSQL环境
需要关注的是Connecter/NET版本,8.0.20。
2.创建项目,安装NUGET包MySql.Data.EntityFramework,版本一定要与Connecter/NET一致。选择8.0.20版本MySql.Data.EntityFramework,此时已经安装EF6,为6.2.0版本
3、使用来自数据库的 Code First 模型并添加连接
3、添加测试代码
检索的BUG集合:
1、VS没有MySQL Database数据源=》安装MySQL For VS驱动
2、Authentication method 'caching_sha2_password' not supported by any of the available plugins =》 default_authentication_plugin=mysql_native_password 同时要重启MySQL服务,增加新用户才能生效!
3、连接字符串搞了半天,结果可以自己生成
4、Code First一定要是空的数据库,没有建好的