0
OriAssurant created
Hi Abp Zero Support,
Our project is based on .Net Core 2 + Angular 8. I noticed in Preinitialize you're using Configuration.IocManager, but in Initialize, you're using IocManager directly. Just wonder what was the difference between these two IocManager? Is IocManager a singleton instance?
Thank you
2 Answer(s)
-
0
They don't make a difference, you can use either one. : )
You may use
IocManager
under the module, otherwise use dependency injection.see https://aspnetboilerplate.com/Pages/Documents/Dependency-Injection
-
0
Thank you for the quick response!