I have a validation attribute set up where I need to hit the database to accomplish the validation.I tried setting up property injection the same way I do elsewhere in the project but it\'s not workin
I have an application that started life as an MVC (1.0) app in Visual Studio 2008 Sp1 with a bunch of Silverlight 3 projects as part of the site. Nothing fancy at all. Using Ninject for dependency inj
We\'ve begun using Dependency Injection recently, and we\'ve chosen Ninject 2 (for now) as our IoC Container.As I refactor our solution to incorporate DI principles, I\'ve run into something that bugs
In Ninject 1.0 I had following binding definitions: Bind<ITarget>().To<Target1>().Only(When.Context.Variable(\"variable\").EqualTo(true));
I just did File -> New Project last night on a new project. Ah, the smell of green fields. I am using the just released ASP.NET MVC 2 (i.e. no preview or release
I need to write a stored procedure to insert a row into a table.The table has an Identity column called ID.My question is should I return the value and if so, how?