### 切换数据库为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