Top "Castle-windsor" questions

Castle Windsor is an Inversion of Control container for .NET.

Autofac register assembly types

In Castle, I used to do the following to register types from a different assembly: Classes.FromAssemblyNamed("MyServer.DAL") .Where(…

c# asp.net-web-api castle-windsor autofac
Dependency Injection in WebAPI with Castle Windsor

I want to implement Dependency Injection in WebApi application using Castle Windsor. I have following sample code - Interface - …

c# castle-windsor asp.net-web-api wcf-web-api
Castle.Windsor lifestyle depending on context?

I have a web application where many components are registered using .LifestylePerWebRequest(), now I've decided to implement Quartz.NET, a .…

c# asp.net-mvc-3 inversion-of-control castle-windsor quartz.net
Castle Windsor Dependency Resolver for MVC 3

Since the IoC/DI implementation in MVC 3 is most likely in its final form in the RC, I'm looking for …

asp.net-mvc asp.net-mvc-3 castle-windsor
How to get started with Castle-Windsor?

I am completely new with IoC/windsor. I started with Google to learn it, but unfortunately, I haven't got proper …

.net castle-windsor
Which Dependency Injection Tool Should I Use?

I am thinking about using Microsoft Unity for my Dependency Injection tool in our User Interface. Our Middle Tier already …

.net dependency-injection inversion-of-control castle-windsor ioc-container
Logging with Castle.Facilities.Logging and log4net

I'm trying to get log4net integration for Castle Windsor working. I wrote my class with an public property of …

logging log4net castle-windsor log4net-configuration
Castle Windsor: How do I inject all implementations of interface into a ctor?

I've written an interface which is implemented by multiple classes. I want to write a Service class which will have …

c# dependency-injection castle-windsor
How to use Windsor IoC in ASP.net Core 2

How can I use Castle Windsor as an IOC instead of the default .net core IOC container? I have built …

c# dependency-injection asp.net-core-2.0 castle-windsor ioc-container
Design - Where should objects be registered when using Windsor

I will have the following components in my application DataAccess DataAccess.Test Business Business.Test Application I was hoping to …

c# inversion-of-control castle-windsor