ABP使用Mysql資料庫

2022-02-21 14:51:02 字數 612 閱讀 8426

1.先安裝mysql的包,entityframework和web專案都需要安裝

2.修改web.config的配置檔案

3.安裝mysql的驅動

4.修改entityframework專案下的configuration建構函式

setsqlgenerator("mysql.data.mysqlclient", new mysql.data.entity.mysqlmigrationsqlgenerator());//設定sql生成器為mysql的

5.toddwolfdbcontext的類上加一句特性

[dbconfigurationtype(typeof(mysql.data.entity.mysqlefconfiguration))]

然後就可以update資料庫了。

ABP框架中使用MySQL資料庫

1.移除sql server的nuget包 開啟程式包管理器控制台,並選中.entityframeworkcore 然後依次執行 uninstall package microsoft.entityframeworkcore.design uninstall package microsoft.en...

ABP入門系列(21) 切換MySQL資料庫

abp入門系列目錄 學習abp框架之實操演練 原始碼路徑 github learningmpaabp abp支援mysql已經不是什麼新鮮事了,但按照官方文件 entity framework mysql integration來,你未必能成功切換,本文就記錄下切換mysql資料庫遇到的一些坑,供後...

ABP資料庫的遷移

新增表,一 test 對多 test1 關係 test using abp.domain.entities.auditing using system using system.collections.generic using system.componentmodel.dataannotatio...