I have MVC project. the model, controller & View are all have a project of there own hence 3 dlls. I also have a IFACADE, IBUSINESS & IDATALAYER interfaces(dlls) with concrete implementaion in
I\'ve got a fairly complex wpf application that use MEF to load optional components. This works just fine with a standard installer.
Here is the scenario: I\'m writing a data loader which accepts binary data from certain DB2 catalog tables. I created POCOs for the DB2 table structures and am using Code First to create the SQLServe
I am working on a prototype for Silverlight OOB application. To modularize the application either PRISM or MEF or both will be used. When a new version of the application is a开发者_如何学运维vailable
I wrote a custom region adapter for a DevExpress ribbon. public class dxDocumentGroupRegionAdapter : RegionAdapterBase<DocumentGroup>
I need to instanciate many instances of the same View of a Prism module. I am using MEF: The Codeplex version has the ExportFactory attribute that allows multiple instance creation but P开发者_Python百
I am writing a new application which registers views within regions automatically using the PRISM AutoPopulateRegionBehaviour. This works fine when I registe开发者_运维百科r the views at app startup,
开发者_运维技巧Has anyone been able to create an Asp.Net Mvc plug-in implementation using MEF (or some other IoC tools) that does NOT require the Razor views to be compiled into dll\'s?Ideally, I\'d l
I just start study DI (I\'m working on WPF/Silverlight but I have a plan to move to ASP.NET). After I read some DI articles from internet there are two Frameworks that开发者_运维百科 I\'m interested i
i am trying to refactor my project to improve testability, therefor i\'m introducing an abstract factory.