Tagged Questions
24
votes
3answers
4k views
Singleton Per Call Context (Web Request) in Unity
A few days ago I had this issue with ASP.Net threading. I wanted to have a singleton object per web request. I actually need this for my unit of work. I wanted to instantiate a unit of work per web ...
2
votes
1answer
390 views
Unity: pass parameters to custom lifetime constructor, in xml configuration file
I wrote my CustomLifetimeManager like this:
public class CustomLifetimeManager <T> : LifetimeManager
{
private readonly string _arg;
public CustomLifetimeManager(string arg)
{
...
1
vote
2answers
1k views
MVC 3, Unity 2 - Per Request Lifetime Manager
I'm using the Unity MVC3 code at http://unitymvc3.codeplex.com/ to have a NHibernate session per request instance of my IUnitOfWork.
It was working a few weeks ago, I've made some changes, and now ...
1
vote
1answer
480 views
working with generic lifetime managers in unity config section
I have the following generic lifetime manager
public class RequestLifetimeManager<T> : LifetimeManager, IDisposable
{
public override object GetValue()
{
return ...
0
votes
1answer
144 views
A single instance of controller 'TestController' cannot be used to handle multiple requests
I have Some issues with the life time manager in unity, it uses the object like its singleton, but in the configuration I set it to "PerWebRequest".
The Error is:
A single instance of controller ...
0
votes
1answer
410 views
C# Unity2: Problem resolving genrics when using a lifetimemanager
I am using ASP MVC 3 (RC) with Unity 2 with great success. However, I have one problem that I cannot wrap my head around. Behind the scenes I use POCO (Person, Company, ...) which I access through ...