- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试配置简单的注入(inject)器来工作,但我似乎无法通过它。我按照此 link 中有关如何解决此问题的说明进行了操作但它没有用。这是错误消息:
NotificationEntities is registered as transient, but implements IDisposable.
这是 SimpleInjectorInitializer.cs 的代码
public static void Initialize()
{
var container = new Container();
container.Options.DefaultScopedLifestyle = new WebRequestLifestyle();
InitializeContainer(container);
container.RegisterMvcControllers(Assembly.GetExecutingAssembly());
container.Verify();
DependencyResolver.SetResolver(new SimpleInjectorDependencyResolver(container));
}
private static void InitializeContainer(Container container)
{
container.Register<IEmailTemplateRepository, EmailTemplateRepository>();
}
NotificationEntities 是从 EF 生成的,所以它应该已经实现了,对吗?
最佳答案
The NotificationEntities is generated from EF so it should already implement that, correct?
是的,NotificationEntities
确实实现了 IDisposable
,这正是警告的内容 telling你:
A registration has been made with the Transient lifestyle for a component that implements IDisposable.
这是一个问题,因为:
A component that implements
IDisposable
would usually need deterministic clean-up but Simple Injector does not implicitly track and dispose components registered with the transient lifestyle.
要解决此问题,您应该:
Register the component with the scoped lifestyle that is appropriate for the application you are working on.
换句话说,按如下方式注册您的NotificationEntities
:
container.Register<NotificationEntities>(Lifestyle.Scoped);
关于c# - 简单的喷油器诊断警告一次性瞬变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42591234/
在 angularjs:~1.6.0 应用程序中使用 angular-translate:^2.15.2 时出现以下错误,translate-loader-static-files: ^2.15.2
我开发了一个 AngularJS 应用程序,它可以在 Firefox、Opera、Safari、Edge 和 Chrome 上运行,但不能在 IE 11 上运行。 这是我在 IE 11 中打开应用程序
我是一名优秀的程序员,十分优秀!