vote up 4 vote down star
1

What problems does MEF (Microsoft Extensibility Framework) solves that cannot be solved by existing IoC/DI containers?

flag

4 Answers

vote up 1 vote down check

MAF is focused on a very specific problem as well...Isolation and Versioning. That is if you need app/process isolation for addins either for managability, or security then MAF provides an answer that none other do. It makes app domains invisible to the user, manages when they crash, and can even unload them when not in use. MAF does not provide any handling of dependencies as MEF does. So in MAF when it comes to services others need, you need to handle providing the instances. It does provide some support for passing them, but not constructing them.

From a discussion on the differences between IOC and MEF by someone at MS: http://www.codeplex.com/MEF/Thread/View.aspx?ThreadId=35083

link|flag
The question was about MEF not MAF, but thanks for the answer and link. – alex Sep 20 '08 at 19:46
Fair enough, FWIW the post did have this: We actually think all of them can work together, using traditional IoC for your general IoC concerns, MEF for extensibility, and MAF for isolation. You'll see some stuff coming from us in the future that shows how this all comes together. – torial Sep 20 '08 at 21:12
Yes, we have been working on both fronts. In the case of IOC/MEF, I posted a link below to a hanselminutes episode where we touch on this, and the spike work around Unity/Autofac integrating with MEF. In terms of MEF/MAF, we've been doing some spiking around this, and see there is a path. – Glenn Block Feb 1 at 8:07
vote up 8 vote down

The principle purpose of MEF is extensibility; to serve as a 'plug-in' framework for when the author of the application and the author of the plug-in (extension) are different and have no particular knowledge of each other beyond a published interface (contract) library.

Another problem space MEF addresses that's different from the usual IoC suspects, and one of MEFs strengths, is [extension] discovery. It has a lot of, well, extensible discovery mechanisms that operate on metadata you can associate with extensions. From the MEF CodePlex site:

"MEF allows tagging extensions with additonal metadata which facilitates rich querying and filtering"

Combined with an ability to delay-load tagged extensions, being able to interrogate extension metadata prior to loading opens the door to a slew of interesting scenarios and substantially enables capabilities such as [plug-in] versioning.

MEF also has 'Contract Adapters' which allow extensions to be 'adapted' or 'transformed' (from type > to type) with complete control over the details of those transforms. Contract Adapters open up another creative front relative to just what 'discovery' means and entails.

Again, MEFs 'intent' is tightly focused on anonymous plug-in extensibility, something that very much differentiates it from other IoC containers. So while MEF can be used for composition, that's merely a small intersection of its capabilities relative to other IoCs, with which I suspect we'll be seeing a lot of incestuous interplay going forward.

link|flag
vote up 2 vote down

IoC containers focus on those things you know i.e. I know I will use one logger in a Unit Test, and a different Logger in my app. MEF focuses on those things you don't, there are 1 to n loggers that may appear in my system.

link|flag
vote up 2 vote down

Scott Hanselman and I covered this topic in more detail in the recent hanselminutes.

http://www.hanselminutes.com/default.aspx?showID=166

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.