trymodular
trymodular copied to clipboard
Why AutoFac?
Can I ask why you have used AutoFac and not the built in IoC for .NET Core? Is it not possible to do this with the built in IoC?
The built in IoC only have basic features. I used Autofac because I would like to do registration automatically by scanning assemblies. Yes, it's possible to use only built in IoC, but you will need register your services manually.
Ok thanks. I'll have a look at Ext.Core as I'm sure they use the built in one and do auto registration by scanning the assemblies.
Is it possible to do with the 4.6 framework?