问题描述
AspNetCore中的CreatePerOwinContext
替代品(如果有)是什么?
What is the CreatePerOwinContext
replacement, if any, in AspNetCore?
我正在尝试将Asp.Net Identity样本迁移到AspNet Core,并发现遗留问题?提供CreatePerOwinContext
扩展方法的程序包与Asp.Net Core框架不兼容.
I'm trying to migrate the Asp.Net Identity samples to AspNet Core, and finding that the legacy? package that provides the CreatePerOwinContext
extension method is not compatible with Asp.Net Core framework.
推荐答案
经过一番挖掘……看来CreatePerOwinContext
主要是依赖注入机制的一部分.
After some digging...it seems that CreatePerOwinContext
was primarily part of a dependency injection mechanism.
Microsoft.AspNetCore 1.0.0支持作为一等公民的依赖项注入.
Microsoft.AspNetCore 1.0.0 supports dependency injection as a first-class citizen.
https://docs.asp.net/en/latest/basics/dependency-injection.html
扩展可用于所需的大多数常见身份服务.例如,下面是CreatePerOwinContext
与IServiceCollection
Extensions are available for most of the common Identity services that are required. For example, below is a comparison of the CreatePerOwinContext
compared to the IServiceCollection
IServiceCollection(AspNetCore 1.0.0)
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlServer(config.GetConnectionString("DefaultConnection")));
}
}
CreatePerOwinContext(已淘汰)
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.CreatePerOwinContext(ApplicationDbContext.Create);
}
}
这篇关于什么是AspNetCore中的CreatePerOwinContext替代品?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!