I am developing a Windows Phone 7 app and am using the MVVM pattern. I have a need to pass a parameter to the contructor of the ViewModel for a page. All my datac开发者_如何学JAVAontexts and binding a
So, let\'s say I have an interface IThingFactory: public interface IThingFactory { Thing GetThing(int thingId);
I was using NInject WCF extension 2.2 in my application, but after upgrading the Ninject version to 2.3, it stops working and return some serialization error. Is there any upgraded version of WCF exte
I\'m starting a new project and want to do things better than I\'ve done before. I used Windsor for DI but it didn\'t go great. I\'ve been eyeing up using the NuGet Ninject MVC 3 package to take care
I use Ninject as a DI Container in my application.In order to loosely couple to my logging library, I use an interface like this:
I have a ViewModelLocator from MVVMLight containing my MainViewModel. I have another singleton class ResourceLogger which does something else.
I received a brief introduction to ASP.NET MVC in school and I am trying to expand that knowledge base with Steven Sanderson\'s book Pro ASP.NET MVC 2 Framework.It\'s been a great help, but I have hit
I have a Windows Phone app with Ninj开发者_高级运维ect IOC. At some point I realized that my MainPage.xaml.cs (initial page of the application that gets initialized first) need to have a constructor
I\'m using Ninject 2.2.1.4 and Ninject.Extensions.Wcf 2.2.0.4. My service is decorated with the following attribute:
I have a web application which was using Asp.net MVC2. I Upgraded it to MVC 3 and now I found that OutputCache feature is not working any-more. I created a simple Test action as shown below.