MVVM Light SimpleIoC vs. Ninject
I am working on a new project with MVVM Light. I have heard that it is best not to use the supplied SimpleIoC due to several limitations. But what are the disadvantages / limitations of using SimpleIoC?
What are the advantages of using Ninject when choosing?
+3
Bv202
source
to share
1 answer
My official line is "SimpleIoc is probably enough for a lot of applications, especially mobile. If you need more functionality or have your preferred IOC container, you can change it."
I've never come across a scenario that I couldn't solve with SimpleIoc, except for some WPF desktop applications where we needed to configure an IOC container with a config file that SimpleIoc doesn't support.
Hope this helps, Laurent
+7
LBugnion
source
to share