作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 EF6 与 VS2015 CTP 和 ASP.NET MVC 6 一起使用。它无法识别以下提到的代码 startup.cs
我在使用 EF7 时添加的。
public void ConfigureServices(IServiceCollection services)
{
services.AddEntityFramework(Configuration)
.AddSqlServer()
.AddDbContext<VNDBContext>(options => options.UseSqlServer(Configuration.Get("Data:VNDBContext:ConnectionString")));
services.AddMvc().Configure<MvcOptions>(options =>
{
var jsonFormatter = (JsonOutputFormatter)options.OutputFormatters
.Where(o => o.Instance.GetType() == typeof(JsonOutputFormatter)).First().Instance;
jsonFormatter.SerializerSettings.ReferenceLoopHandling =
ReferenceLoopHandling.Ignore;
});
services.AddSingleton<INodeService, NodeService>();
}
最佳答案
EF6 是与 EF7 非常不同的框架,并且没有 UseSqlServer 扩展方法。
关于entity-framework - Entity Framework 6 无法识别 AddSqlServer(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29568924/
我正在尝试将 EF6 与 VS2015 CTP 和 ASP.NET MVC 6 一起使用。它无法识别以下提到的代码 startup.cs我在使用 EF7 时添加的。 public void C
我是一名优秀的程序员,十分优秀!