使用entity framework core时报如标题错误。
在startup.cs文件中配置服务
public void ConfigureServices(IServiceCollection services) { services.AddControllers(); //注册数据库上下文 services.AddEntityFrameworkSqlServer().AddDbContext<SQLDbRWContext>(options => { options.UseSqlServer(Configuration.GetConnectionString("Main_ReadAndWrite")); }); }
解决方案
1、首先检查项目添加了Microsoft.EntityFrameworkCore和Microsoft.EntityFrameworkCore.SqlServer引用
2、需要手动在startup.cs中添加引用,不然无法识别扩展方法。
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.SqlServer;
唉,有点坑。