0
votes
1answer
93 views

StructureMap to Ninject [closed]

I need to convert StructureMap code to Ninject (to support my hosting provider because they only support Applications operating under a Medium trust). basic register that i have in StructureMap is: ...
1
vote
1answer
118 views

StructureMap to Ninject conversion

How can I convert this: For<ISession>().Use(ctx => { var uow = (INHibernateUnitOfWork)ctx.GetInstance<IUnitOfWork>(); return uow.Session; }); To Ninject? I was able to ...
0
votes
1answer
176 views

How to register FluentNHibernate with Ninject?

I'm setting up an ASP.NET MVC4 application and I'm using Ninject as my DI container. In a previous project I used StructureMap with the following setup in my registry: ...
1
vote
4answers
297 views

Searching for a better Dependency Injection / Inversion of Control Tool. Migrating from StructureMap

Why leaving StructureMap? As stated by Jeremy Miller (The guy behind StructureMap): No Silverlight support Why I need Silverlight support? I'm starting to write WindowsPhone apps, so looks like I ...
8
votes
1answer
477 views

Dependency Injection and development productivity

Abstract For the past few months I have been programming a light weight, C# based game engine with API abstraction and entity/component/scripting system. The whole idea of it is to ease the game ...
0
votes
2answers
1k views

Ninject 3.0 MVC kernel.bind error Auto Registration

Getting and error on kernel.Bind(scanner => ... "scanner" has the little error line under it in VS 2010. Cannot convert lambda expression to type 'System.Type[]' because it is not a delegate ...
0
votes
2answers
235 views

Using Common Service Locator outside Main Project

I recently made the jump from StructureMap to Ninject. All was smooth sailing until I realised that Ninject doesn't have a version of StructureMap's ObjectFactory (service locator). I discovered ...
1
vote
3answers
582 views

Implementing FluentSecurity over Ninject (aka porting StructureMap to Ninject)

I'm a beginner on IoC and dependency injection. I'm reading about it, but I just can't get it. While I figure out how stuff works, I'm trying to implement some of these patterns on my project (and ...
9
votes
5answers
6k views

Structuremap, AutoFac, or Ninject, which one is great for a large scale web app?

I have some experience in working by Structuremap. And now I'm creating a big and large scale web app (really a social networking site) using ASP.NET MVC 3, Entity Framework 4.1 code-first, SqlServer ...
6
votes
7answers
482 views

How can one use an existing instance to select a type to create in an IoC container

this is probably just a newbie question, but I have the following: public class FooSettings {} public class BarSettings {} public class DohSettings {} // There might be many more settings types... ...
1
vote
2answers
407 views

How does ninject work at a high level, how does it intercept object instantiation?

At a high level, how do these dep. injection frameworks work? I can understand if you always instantiate an object via a custom factory like: IUser user = DepInjector.Get<User>(); I'm ...
1
vote
0answers
216 views

Converting Some Code From Ninject To StructureMap

I'm trying to use Steven's solution for Service Layer validation which is outlined in his reply to some question StackOverflow( How to inject A Model State wrapper with Ninject? ). Unfortunately, I'm ...
4
votes
4answers
657 views

Need help getting Ninject equivalent for StructureMap syntax

I am trying to implement IoC (Ninject) for Ravendb and have ran into a little snag. I am using code from ...
8
votes
3answers
2k views

DI/IoC Container Performance Benchmark Comparison?

I've found some 2008 benchmark results for testing the performance of several of the top .NET DI/IoC containers here. But I haven't been able to find any updated results. Are there any benchmarks ...
0
votes
2answers
380 views

Does StructureMap have scoping corresponding to NInject's DefinesNamedScope/InNamedScope?

The problem I'd like to solve is sharing an ISessionProvider between IXyzRepositories (where ISessionProvider holds the current NHibernate ISession). I'm tweaking the "Setting up session per ...
2
votes
3answers
471 views

IoC container that can register everything (non generic) automatically without configuration (assembly to assembly)

the idea is that I have a Core project with lots of interfaces, also Data and Service project with implementations (everything 1-to-1), e.g.: Core { IFooRepo, IBarRepo, IFooService, IBarService} Data ...
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 ...
1
vote
1answer
299 views

How to use custom injection attribute for properties when using StructureMap?

I would like to have my own injection attribute so that I am not coupling my code to a particular IOC framework. I have a custom injection attribute that my code uses to denote that a property should ...
1
vote
3answers
463 views

IoC Container Hurdle for ASP.Net MVC Newb

I must admit that I'm new to ASP.Net MVC and I'm currently researching all the best practices on how to start my new project. So far I have understood the concepts of the Repository Pattern and Unit ...
1
vote
1answer
350 views

StructureMap to Ninject rules

How to write this StructureMap line in Ninject ForRequestedType<HttpContextBase>() .TheDefault.Is.ConstructedBy(x => new HttpContextWrapper(HttpContext.Current)); ?
1
vote
1answer
185 views

Is there a better way to use Castle Windsor's API for Factories?

I am open to other IoC containers, such as NInject and StructureMap if they are much cleaner than this. I hear that StructureMap just introduced "containers" that may simplify this , perhaps? As the ...
4
votes
11answers
695 views

I am looking for a simple yet practical and robust IOC/DI framework for .net

I am going to use it in a project with less-experienced developers so a complex framework such as Spring.NET is not an option. I was thinking about: Ninject Castle Windsor StructureMap Which would ...
1
vote
1answer
124 views

Can you do conventions-based binding with StructureMap 2.5.3?

I find one of the best features of Ninject is conventions-based binding. eg. Bind<IConfigurationSource>().To<RemoteConfigurationSource>() ...
6
votes
2answers
2k views

MVP pattern using webforms and DI object instantiation

I am using the generic repository pattern to persist my data. On the PageLoad, I am creating a new Repository (from IRepository) object, and on PageUnload, I dispose of it. Should the ...
2
votes
3answers
3k views

Using Ninject (or some other container) How can I find out the type that is requesting the service?

Suppose I have an interface for a service: public interface IFooService { void DoSomething(); } And a concrete implementation of that service that is a generic: public class ...