Darker v2.0.78 Release Notes
Release Date: 2019-09-08 // about 4 years ago-
- ๐ Fixes bug #78 where the fallback handler was not been registered.
- ๐ Clean up how registration happens, stopped using the builder
Previous changes from v2.0.63
-
- No longer instantiating a new service provider each query
You can change the lifetime of the queryprocessor to Scoped https://github.com/BrighterCommand/todo-backend-aspnetcore-brighter/blob/master/src/ToDoApi/Startup.cs#L78-L85
services.AddDarker(options => { //EFCore by default registers Context as scoped, which forces the QueryProcessorLifetime to also be scopedoptions.QueryProcessorLifetime = ServiceLifetime.Scoped; })