Ninject Conventions is a Ninject Extension that helps to reduce binding configuration code by implementing configuration by convention.

learn more… | top users | synonyms

1
vote
1answer
93 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 ...
0
votes
0answers
63 views

Using Ninject custom instance providers to bind successfully using factory method argument to resolve

I've been studying this accepted answer to a similar question in which what I believe is a concrete factory returns an implementation based on a string argument on the factory method matching a named ...
1
vote
2answers
131 views

How do I bind generic types with inheritance using Ninject Conventions extensions

How can I bind InitializerForXXX (non-generic implementation) to IInitializer<XXX> (generic interface) using Ninject Conventions so that requests for an IInitializer<T> resolve a ...
1
vote
1answer
132 views

Ninject Conventions and Interception

I want to decorate my services with attributes for interception, and then have conventions based binding set the interceptors up for me. I don't want my attributes to inherit from the interception ...
1
vote
2answers
61 views

Do Ninject MetaData constrained Get()'s apply to child resolutions?

I am using ninject.extensions.conventions to bind all implementations in a given assembly and tag them with the assembly name as the binding's metadata. I can pull these items back out using a Get and ...
7
votes
1answer
223 views

Convention based binding of constructor string arguments with Ninject

I'm using Ninject as IoC container in my project. I have following class: public class SomeRepository:ISomeRepository { public SomeRepository(string someDatabaseConnectionString) { // ...
1
vote
1answer
159 views

Handling application settings with ninject and convention based binding

I am using Ninject in an MVC3 application and am trying to switch over to conventions based binding with ninject.extensions.conventions. Now let's say I have a class that needs access to application ...
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: ...
4
votes
1answer
522 views

How do I use the Ninject Conventions library to bind to a base type that isn't an interface?

I'm trying to scan for a set of components that implement a specific base class in the assemblies in the same directory as my application. I need to do this as a sort of plugin-style architecture, as ...
0
votes
1answer
288 views

How do I avoid FileNotFoundException for vshost32 when using AssemblyScanner FromAssembliesInPath method?

An exception is getting thrown when I use the AssemblyScanner.FromAssembliesInPath method. How do I fix this problem? I am using the Ninject.Extensions.Conventions extension. I am using versions I ...
2
votes
2answers
1k views

Ninject Contextual binding

I mostly have been using basic functionalities of Ninject. Therefore, this question might be too obvious. If so please excuse me. Anyways, I have the following in a module: ...
0
votes
2answers
535 views

Ninject to StructureMap

I am looking to convert following code to StructureMap: private Mock<MembershipProvider> MockMembership = new Mock<MembershipProvider>(); private StandardKernel GetIoCKernel() { var ...
11
votes
2answers
3k views

How to use Ninject Conventions extension without referencing Assembly (or Types within it)

Sorry in advance for the long question, it's long because I've been digging at this all day. The general problem: I have an ASP.Net MVC2 application with the following projects: MyApp.Web, ...