时间:2021-07-01 10:21:17 帮助过:2人阅读
原来.net framework访问数据库如下:
.net core 访问数据库,数据库选用SQLServer:
根据哈利路亚的博客,修改我的数据库。
我采用的是SQLServer,在引用时需要更换包,引用 Microsoft.EntityFrameworkCore.SqlServer.Design和Microsoft.EntityFrameworkCore.SqlServer。
更改语句:
options.UseNpgsql(Configuration.GetConnectionString("DefaultConnection")));语句也需要改动,更改为:
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
以上就是我更改的过程,感谢哈利路亚的博客。
标签: