from last couple of days I was reading about the PRISM, CAL & MEF. All of these support the composition, modularity, bootstrapers, shell and region etc.

So question comes in my mind is. Where these all support main features for modularity so which framework to use and where they fit best.

can somebody guide me for the comparing these techs?

有帮助吗?

解决方案

CAL was an old name for PRISM that is no longer in use. PRISM uses MEF, Unity or any other inversion of control library to implement composition and dependency injection. MEF is newer and easier to work with than Unity, but it all depends on the templates you decide to use.

Perhaps you should check the Developer's Guid to Prism for a better understanding of PRISM. PRISM's use of IoC/DI is described in Modular Application Development/Dependency Injection and Modular Applications

You should also note that PRISM is considered over-engineered, even if you think your application fits the Composite Application definition (it probably doesn't).

It is much easier to get up to speed with MVVM and WPF development if you use a simpler framework like Caliburn.Micro or MVVM Light.

其他提示

CAL is a former name of Prism framework. MEF is a IoC container (one of them). Prism can use different IoC containers (Unity and MEF out of the box).

So, your question doesn't makes any sense.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top