作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我想在将作为 Azure Web 作业运行的控制台应用程序中使用依赖注入(inject)。这样做我正在重用我在相关的 Asp.net 应用程序上使用的名为“AddATonOfServices()”的自定义服务注册方法。
我的问题是,使用 AddScoped() 在“AddATonOfServices()”中注册的服务现在在控制台应用程序中的行为如何?他们的行为是像 Transient 还是 Singleton 一样,还是如何?会有什么意想不到的行为吗?
谢谢。
最佳答案
如果您通过 IServiceScopeFactory
创建范围,它将被解析为范围。 .
// provider is the root container
using(var scope = provider.GetService<IServiceScopeFactory>().CreateScope())
{
var scopedService = scope.ServiceProvider.GetRequiredService<IScopedService>();
// do something
}
// scope will be disposed and all scoped and transient services which implement IDisposable
provider
与应用程序一样长)
关于dependency-injection - AddScoped() 如何在 Asp.net 核心之外表现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45653561/
我是一名优秀的程序员,十分优秀!