abp 切换默认项目为pgsql



### 切换数据库为PGSQL
1. 将EntityFrameworkCore项目中的Volo.Abp.EntityFrameworkCore.SqlServer包
替换为相同版本的Volo.AbpEntityFrameworkCore.Postgresql包

2. 将TestEntityFrameworkCoreModule文件中
AbpEntityFrameworkCoreSqlServerModule 替换为 AbpEntityFrameworkCorePostgreSqlModule
![](https://www.icode9.com/i/l/?n=22&i=blog/944369/202208/944369-20220801164516653-2054806090.png)

3. 将全局options.UseSqlServer();替换为options.UseNpgsql();

4. 在Migration项目和webapi项目中的Program文件Main方法顶部添加

//时间戳插入问题
AppContext.SetSwitch(“Npgsql.EnableLegacyTimestampBehavior”, true);

原创文章,作者:,如若转载,请注明出处:https://blog.ytso.com/278261.html

(0)
上一篇 2022年8月1日
下一篇 2022年8月1日

相关推荐

发表回复

登录后才能评论