在ABP模板工程中使用MySql
Posted 我思故我在
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在ABP模板工程中使用MySql相关的知识,希望对你有一定的参考价值。
1 下载一个新的ABP模板项目
http://www.aspnetboilerplate.com/
2 在Windows上安装mysql, 创建一个新的数据库 sampledb
https://dev.mysql.com/doc/refman/8.0/en/mysql-installer-gui.html - MySql的安装文档
https://downloads.mysql.com/archives/installer/ - mysql-installer-gui的下载地址
3 打开模板项目,在EntityFramework和Web项目中安装 MySql.Data.Entity
Install-Package MySql.Data.Entity -Version 6.8.3 / Install-Package MySql.Data.Entity - 安装MySql.Data.Entity组件的命令
注意: 这里不要安装最新版本的MySql.Data.Entity, 因为模板项目使用的.net framework版本是4.5.2, 对应的MySql.Data.Entity的版本要使用6.8.3 , 如果使用最新的版本,后面会报错
4 修改Web.config文件
<entityFramework codeConfigurationType="MySql.Data.Entity.MySqlEFConfiguration, MySql.Data.Entity.EF6"> <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" /> <providers> <provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6" /> <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> </providers> </entityFramework> <connectionStrings> <add name="Default" providerName="MySql.Data.MySqlClient" connectionString="server=localhost;port=3306;database=sampledb;uid=root;password=*** " /> </connectionStrings>
关于Ef6 to MySql 可参考文档 http://dev.mysql.com/doc/connector-net/en/connector-net-entityframework60.html
5 在Package Manager Console中执行命令 Update-Database –Verbos
6 现在就可以运行ABP的模板项目了
以上是关于在ABP模板工程中使用MySql的主要内容,如果未能解决你的问题,请参考以下文章
基于Abp 的.net core 工程改造mysql 的记录
基于Abp 的.net core 工程改造mysql 的记录
ABP示例程序-使用AngularJs,ASP.NET MVC,Web API和EntityFramework创建N层的单页面Web应用