Tagged Questions
1
vote
2answers
87 views
Inject custom code in standard application
We have a standard application in our company.
Now I want to inject some custom assemblies in the application.
Normally if you have a ninject kernel or unity container, you can get the ...
0
votes
2answers
109 views
How can I implement Ninject .InSingletonScope() when using Unity IoC
I was using ninject IoC in my application and in particular the following:
kernel.Bind<RepositoryFactories>().To<RepositoryFactories>()
.InSingletonScope();
I would like to implement ...
1
vote
2answers
263 views
AOP vs MVC FilterAttributes vs Interceptors [closed]
ASP.NET MVC proposes that use or extend built-in Authorization, Action, Result, Exception filters.
3th party .Net IoC containers (Unity, Ninject, Autofac) propose Interceptors
3th party AOP tools ...
0
votes
1answer
181 views
Can I use Ninject instead of Unity in the MS Application Blocks?
I am at the early stages of design for a large application. Many of the features will be easier to implement using the Microsoft Enterprise Application Blocks (Caching, Security, Logging). I have in ...
0
votes
1answer
136 views
Has anybody used Ninject and the MS Enterprise Caching application block?
I am putting together a reporting service based on a very slow connection to a backing (dare I say legacy) data store. The only access I have to the data store is via a web services SDK written in ...
0
votes
0answers
374 views
Unity vs Ninject generic parameters [closed]
In ninject i can do this: kernel.Bind(typeof(IRepository<>)).To(typeof(Repository<,>));
but in unity container i get this error
The supplied type IRepository1 does not have the same ...
0
votes
1answer
171 views
Is alternative in Unity like Ninject has: Global.Inject(this)
I use Unity and I have a class:
public class A
{
[Dependency]
IRepository<User> User { get; set; }
}
Also I have class B:
public class B
{
public B()
{
/* In Ninject ...
0
votes
1answer
317 views
MVC3 & Ninject / Unity: Injecting a hierarchical service container
I've been using Ninject for a while, but only for simple DI. I have a slightly more complex scenario that I'd like to cater for.
I'm using the Ninject.Web.MVC plugin with controller injection, which ...
0
votes
1answer
148 views
How would I do the following NInject registration with Unity IoC?
I want to be able to do the following type registration with unity, does anyone know how?
Bind<ILogger>().To<AssemblyEditorLogger>()
.WithConstructorArgument("currentClassName",
...
0
votes
1answer
197 views
EFBootstrapper Ninject to Unity EFBootStrapper
I am following one of the example from http://kazimanzurrashid.com/posts/entity-framework-code-first-bootstrapping
In that post Kazi used Ninject but in my case I choose Unity as my IOC container.
I ...
3
votes
3answers
439 views
Unity equivalent for Ninject's Bind.ToMethod of IPrincipal,IIdentity
I'm trying to replicate the following Ninject syntax in Unity, but not having any luck:
Bind<IIdentity>().ToMethod(c => HttpContext.Current.User.Identity);
I'm thinking it ought to look ...
1
vote
1answer
126 views
Equivalent of Bind<>.ToMethod in Unity?
Is there an equivalent of Ninject Factory Methods in Unity? I'm looking for the unity equivalent of the following example:
Bind<IWeapon>().ToMethod(context => new Sword());
0
votes
0answers
120 views
Dependency injection on .Net [duplicate]
Possible Duplicate:
How do the major C# DI/IoC frameworks compare?
I see a lot of discussion here and elsewhere about the pros and cons of various .NET DI frameworks, but it's all dated ...
11
votes
1answer
933 views
Avoiding Service Locator Antipattern with legacy app not designed for IOC
I have read often that Service Locators in IOC are an anti-pattern.
Last year we introduced IOC (Ninject specifically) to our application at work. The app is legacy, it's very big and it's ...
0
votes
1answer
402 views
Can I use Ninject insted of PRISM? or maybe it sould replace Unity in PRISM?
I'm going to start an pretty large project witch contains 30+ modules, I have goggled almost for a capable framework ? Need some help to find out witch one of these is soutable?
1) PRISM
2) Ninject
...
0
votes
1answer
222 views
Ninject Registration with Silverlight and Prism
I am using Ninject as my bootstrapper (mainly because of convention based registration and its fluent API).
We are using Prism 4 Navigation Framework RequestNavigateAsync call to navigate from one ...
2
votes
2answers
598 views
Ninject parent child container heirarchy (like inheritance)
Does Ninject have anything similar to the Unity concept of parent/child containers to provide a basic inheritance model? I googled but didn't find anything.
3
votes
1answer
381 views
Late-bound version of RegisterInstance in Unity
In our project, we use Unity as a dependency injection framework. Now I am faced with a situation, where I need a late-bound version of IUnityContainer.RegisterInstance().
In ninject, the code I am ...
1
vote
4answers
204 views
How to implement IoC in a Hierarchical Class
I have a hierarchical category list with Category objects
public class Category
{
private int? ParentId = -1;
private Category _Parent = null;
public Category Parent
...
3
votes
1answer
672 views
Lazy dependency registration with unity
Note 1: I want to make this clear: I am not trying to lazy load dependencies or inject lazy types.
Most (all?) IoC containers require metadata to be registered with the container to describe how some ...
1
vote
1answer
285 views
Does Unity offer anything similar to Ninject custom providers?
does Unity (any version) provide anything similar to Ninject custom providers as described here? I need to access contextual information at the point of type resolution. Specifically, I need access ...
3
votes
1answer
136 views
How to conditionaly bind a instance depending on the injected type using unity?
I'm used to Ninject, and for a specific project I'm asked to learn Unity.
There is one thing i can't find information on how to do.
In Ninject I can state:
...
1
vote
2answers
1k views
Unity IoC and Static method
What is the best way to handle a situation where you're using IoC but there is a static method in it along with the other methods like the following:
public partial class ShoppingCart
{
private ...
113
votes
6answers
20k views
How do the major C# DI/IoC frameworks compare?
At the risk of stepping into holy war territory, What are the strengths and weaknesses of these popular DI/IoC frameworks, and could one easily be considered the best? ..:
Ninject
Unity
...
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 ...
3
votes
2answers
218 views
What are benefits of using a third party dependency injection container over using the one i built?
I Built an IoC container long time ago while watching this show http://www.dnrtv.com/default.aspx?showNum=126 few months ago, and did a small sample using it, and was working fine.
Now I am using ...
4
votes
3answers
858 views
Castle Windsor Typed Factory Facility equivalents
do any other .NET IoC containers provide equivalent functionality to the typed factory facility in Castle Windsor?
e.g. if I am using an abstract factory pattern in a WPF application:
public class ...
1
vote
1answer
512 views
Asp.net Mvc - Kigg: Maintain User object in HttpContext.Items between requests
first I want to say that I hope this doesn't look like I am lazy but I have some trouble understanding a piece of code from the following project.
http://kigg.codeplex.com/
I was going through the ...
2
votes
2answers
721 views
Does NInject work in medium trust hosting?
I'm doing shared hosting with GoDaddy and I developed a sample ASP.NET MVC app using Castle Windsor and unfortunately, it didn't work in a medium trust setting. Specifically, I got this error: ...
1
vote
4answers
304 views
Dependency Injection Wireup Question
If there are 3 interfaces like the following
public interface IWeapon {
void Kill();
}
public interface ISword:IWeapon {
void Slice();
}
public interface IShuriken: IWeapon {
void Pierce();
}
...
4
votes
2answers
1k views
Ninject equivalent of Unity RegisterInstance method
Does Ninject have and equivalent method for unity's registerinstance.
I want to create a mock object and register it.
Thanks
1
vote
1answer
744 views
Can I use Ninject for Prism event aggregation in Silverlight?
I'm looking into doing a project in Silverlight 3 using Prism and I really like the eventing aggregation as shown here http://development-guides.silverbaylabs.org/Video/Prism-Eventing
All the ...
44
votes
5answers
16k views
Ninject vs Unity for DI
We are using ASP.net MVC.
Which of these is the best DI framework Ninject or Unity and why?

