MEF, creating Import's tree when a branch is requested - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T09:55:26Z http://stackoverflow.com/feeds/question/266549 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/266549/mef-creating-imports-tree-when-a-branch-is-requested 1 MEF, creating Import's tree when a branch is requested Krzysztof Koźmic 2008-11-05T20:33:54Z 2008-11-12T23:08:57Z <p><strong>==Update==</strong></p> <p>I have found a solution and I blogged about it here: <a href="http://kozmic.pl/archive/2008/11/06/creating-tree-of-dependencies-with-mef.aspx" rel="nofollow" title="here">link</a></p> <p>However I'd be more than happy if someone came up with a better one.**</p> <p>Using MEF I want to do the following.</p> <p>I have a WPF Shell. To the shell I want to Import from another DLL a UserControl that is also a View of my MVP triad. The way the MVP triad works, is that in presenter I have a constructor that takes both IModel and IView and wires them up. So, in order for this to work, I need MEF to do the following:</p> <ol> <li>Create IView implementation</li> <li>Create IModel implementation</li> <li>Create Presenter and pass IModel and IView to its constructor</li> <li>Import IView implementation into my shell when it gets displayed</li> </ol> <p>Instead what it does, is it only creates the type Exporting IView and passes it to the shell, basically skipping steps 2 and 3. Its pretty logical, when you think about it, but how can I tell MEF to also create the whole triad when I ask for a IView. I don't need to reference Presenter nor model anywhere else in my Shell .dll so puting it as an Import as well is not an option (and it would be quite ugly anyway :).</p> <p>I'm using the latest drop of MEF (Preview 2 Refresh). Anyone?</p> http://stackoverflow.com/questions/266549/mef-creating-imports-tree-when-a-branch-is-requested/270866#270866 0 Answer by Glenn Block for MEF, creating Import's tree when a branch is requested Glenn Block 2008-11-07T00:15:41Z 2008-11-07T00:15:41Z <p>Did you put the [ImportingContructor] on the contructor?</p> <p>Glenn</p> http://stackoverflow.com/questions/266549/mef-creating-imports-tree-when-a-branch-is-requested/271393#271393 0 Answer by Krzysztof Koźmic for MEF, creating Import's tree when a branch is requested Krzysztof Koźmic 2008-11-07T06:43:31Z 2008-11-07T06:43:31Z <p>Yes I did, check the link I provided, there is a simplified version of the code, and my solution. It works but I'm wondering if there's a better way to do this.</p> http://stackoverflow.com/questions/266549/mef-creating-imports-tree-when-a-branch-is-requested/285531#285531 1 Answer by Sidar Ok for MEF, creating Import's tree when a branch is requested Sidar Ok 2008-11-12T22:01:55Z 2008-11-12T22:01:55Z <p>Hi Kryzstof,</p> <p>The way you outlined in your blog post is the perfectly valid way for utilizing MEF. This is nested composition, and while designing it is always good to keep in mind that Container is the decider, so as a plug-in / extender vendor you will focus on your services that you are "exporting" and as an important, you shouldn't worry about what you need to be serviced, or "importing" (this point has some issues in the last drop, but I hear good enough to be optimistic about it). </p> <p>So in nested composition, you may need some external services but at the time you can also be providing some. When you do a compose, it will plug everything together. </p> <p>I have a blog post containing 2 examples illustrating this way of thinking : </p> <p><a href="http://www.sidarok.com/web/blog/content/2008/09/26/what-is-this-managed-extensibility-framework-thing-all-about.html" rel="nofollow">http://www.sidarok.com/web/blog/content/2008/09/26/what-is-this-managed-extensibility-framework-thing-all-about.html</a> </p> <p>Also, to drop the dll and watch the types in it, you can use DirectoryPartCatalog to watch that folder. </p> <p>You will also need to watch out the scenarios where there are multiple exports for the same contract, and determine the right one from metadata provided. </p> http://stackoverflow.com/questions/266549/mef-creating-imports-tree-when-a-branch-is-requested/285744#285744 1 Answer by Glenn Block for MEF, creating Import's tree when a branch is requested Glenn Block 2008-11-12T23:08:57Z 2008-11-12T23:08:57Z <p>Check my answer here.</p> <p><a href="http://codebetter.com/blogs/glenn.block/archive/2008/11/12/mvp-with-mef.aspx" rel="nofollow">http://codebetter.com/blogs/glenn.block/archive/2008/11/12/mvp-with-mef.aspx</a> </p>