我使用Asp.Net MVC 6 beta4和Repository Pattern。
在我的Startup.cs中我喜欢这样:
services.AddEntityFramework()
.AddSqlServer()
.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlServer(Configuration["Data:DefaultConnection:ConnectionString"]));
//Dependency Injection
services.AddTransient<IProductRepository, ProductRepository>();
在我的Controller中,我可以使用:
获取ApplicationDbContext的实例[FromServices]
public ApplicationDbContext DbContext { get; set; }
但我无法使用上面的自我段代码在我的Repository实现中获取ApplicationDbContext的实例。
使用MVC 5,我在我的存储库中使用了ServiceLocator并使用了ApplicaionDbContext:
var context = ServiceLocator.Current.GetInstance<ApplicationDbContext>()
如何使用Asp.NET MVC 6在我的存储库中获取ApplicationDbContext的实例?
答案 0 :(得分:5)
您可能想要的是使用AddScoped而不是AddTransient,以便在请求结束时正确清理上下文。
您还需要实际添加Context,而不仅仅是AddEntityFramework调用...
services.AddScoped<IProductRepository, ProductRepository>();
services.AddScoped<ApplicationDbContext, ApplicationDbContext>();