The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
40 views

Ninject ASP.NET extension throwing TypeLoadException

I'm trying to use Ninject 3 in an ASP.NET webforms application. We've been using it without the Ninject.Web extension for a while by creating a new injection kernel everywhere we needed one. It ...
1
vote
1answer
94 views

Ninject Conventions with Ninject Factory Extension To Bind Multiple Types To One Interface

I'm trying to expand on the scenario asked in the SO question titled Ninject Factory Extension Bind Multiple Concrete Types To One Interface by using Ninject Conventions for convention-based binding ...
3
votes
1answer
59 views

Disable implicit binding/injection of non explicitly bound classes in Ninject 2+

If you request an unbound object from NInject, then the default behaviour is (if a suitable constructor is available) appears to be to create an instance of the appropriate object. I'd like to ...
0
votes
1answer
121 views

Ninject Constructor Binding

I'm using NInject. I have an object like this interface IFoo {} class Foo : IFoo { public Foo(string magic, IBar bar) {} } I want to be able to inject some foo by passing only the magic. The ...
1
vote
1answer
105 views

Ninject specify binding scope of non referenced component

I have a library that's meant to be used both on desktop apps and web apps. This library has a reference to an external data-access component that on desktop should be bound as singleton and on web ...
0
votes
1answer
325 views

Getting “The resource cannot be found.” error when using Ninject

I'm working on an ASP.NET MVC 3.0 application, using Ninject as my dependency injection framework. So I've inherited my controller from NinjectHttpApplication like so: public class MvcApplication : ...
1
vote
1answer
169 views

upgrade Ninject v2 to v3 with .NET 4 System.ServiceProcess.ServiceBase

I am attempting to use Ninject v3 to test a web service hosted within a .NET4 windows service ( System.ServiceProcess.ServiceBase ). I create MyServerModule : NinjectModule , and within Load() I ...
4
votes
3answers
502 views

Ninject ToFactory works in Resharper unit tests, but not NCrunch

I'm using Ninject.Extensions.Factory with Ninject 3 to create a factory, which creates different types of IFoo based on the string provided to the factory. I've got a passing unit test, but oddly, ...
4
votes
1answer
314 views

Using default parameter values with Ninject 3.0

I have a class with a constructor having a parameter with a default value. With Ninject 2.2, it would honor the [Optional] attribute and work fine with no binding defined against a constructor ...
1
vote
1answer
759 views

Convention based binding in Ninject 3.0

I'm trying to setup Ninject on my new project and I want to scan assembilies using convetions so that IFoo will automatically resolve to IBar All the samples and documentation describes using ...
5
votes
1answer
350 views

Is it possible to bind different interfaces to the same instance of a class implementing all of them?

I have the following (simplified) situation: I have two interfaces interface IAmAnInterface { void DoSomething(); } and interface IAmAnInterfaceToo { void DoSomethingElse(); } and a ...
1
vote
2answers
177 views

Injecting a concrete implementation of a WCF ServiceContract based off value in a config file dymamically

Say I have the following service contract and two concrete implementations: [OperationContract] public interface ISearchService { public ICollection<string> Search(string text); } ...
3
votes
1answer
899 views

Ninject 3.0 MVC kernel scan not working

What happened to kernel.Scan in Ninject 3.0? kernel.Scan(scanner => { scanner.FromAssembliesMatching("LR.Service.*"); ...
2
votes
2answers
168 views

Ninject Conventions with multiple Froms

I have some code in a NinjectModule that sets up Mock bindings for all interfaces in multiple assemblies. Ninject 2 allowed me to call the From() methods multiple times inside the Scan lambda: ...