Tagged Questions
1
vote
1answer
263 views
How to resolve an user repository using Windsor IoC at the start of the application?
I get an error message "Object reference not set to an instance of an object." when I try to use an UserRepos repository. Question is how can I resolve user repository at the start of the application ...
1
vote
1answer
456 views
Castle Windsor ResolveAll that throws when any of registered services cannot be resolved
It seems that current behaviour of Castle Windsor (2.0) method
container.ResolveAll(Type type)
is to ignore all services that cannot be resolved due to missing dependencies. What is recommened way ...
0
votes
1answer
101 views
Delayed/Lazy resolve
Given the following code:
public interface IMyContext
{
string subtype { get; set; }
}
public class MyContext : IMyContext
{
public string subtype { get; set; }
}
public interface ...
0
votes
1answer
119 views
Good idea to resolve XAML in Silverlight 4 with WIndsor container?
Currently, I am resolving xamls from the container so that i can make use of dependency injection much more easily and ellegantly. It's a web application all written in Silverlight 4 with windsor ...