我正在尝试配置我的.NET Core Entity Framework应用程序以使用SQL Server,但我似乎无法访问命名空间。
Startup.cs(错误的起源)
using Microsoft.EntityFrameworkCore.SqlServer;
Project.json
"dependencies": {
"Microsoft.EntityFrameworkCore.SqlServer": "1.1.0"
}
我已成功运行dotnet restore
。
如果有人能指出我正确的方向,那将是可爱的。
答案 0 :(得分:2)
那是因为没有命名空间" Microsoft.EntityFrameworkCore.SqlServer"。与SQL Server相关的所有内容都在" Microsoft.EntityFrameworkCore"命名空间。亲眼看看:https://github.com/aspnet/EntityFramework/tree/dev/src/Microsoft.EntityFrameworkCore.SqlServer。