You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem with registered entries as singleton.
If I add a registration as a singleton (with IDisposable as interface), these objects are getting disposed on request ending in aspnetcore, but still exists in the container on the next request, but disposed off course.
Is this normal? I would think if you register a singleton, It would not get disposed on request scope?
I have a problem with registered entries as singleton.
If I add a registration as a singleton (with IDisposable as interface), these objects are getting disposed on request ending in aspnetcore, but still exists in the container on the next request, but disposed off course.
Is this normal? I would think if you register a singleton, It would not get disposed on request scope?
ex: container.Configure(x => x.For(serviceType).Use(implementationType).Singleton());
Thanks,
Koen
The text was updated successfully, but these errors were encountered: