像core里面的内置的services.AddDbContext(...),web forms的话使用autofac不知道如何注册,新手,请指教!
找到办法了!只需要这样就行了不需要其他操作
var autofacBuilder = new ContainerBuilder();
var services = new ServiceCollection();
services .AddDbContext<>()
autofacBuilder.Populate(services);
var autofacContainer = autofacBuilder.Build();
这个不行啊,需要引用什么包吗?webforms版的哦
@helloworldworldhello:
Microsoft.Extensions.DependencyInjection
引用@czd890: 还是不行,版本是4.8的
@czd890: 31行代码报没有构造方法0个参数,其余两行没有这个方法