vote up 6 vote down star
4

Hi,

Why is Session null in the constructors of Controllers? It can be accessed from Action methods. Presumably, because the MVC Routing framework is responsible for newing-up a Controller, it just hasn't (re-)instantiated the Session at that point.

Does anyone know if this is by design and, if so, why?

[I have managed to circumvent the problem by using a Lazy Loading Pattern.]

flag

56% accept rate

2 Answers

vote up 3 vote down check

Andrei is right - it is null because when running under the ASP.NET MVC framework, the HttpContext (and therefore HttpContext.Session) is not set when the controller class is contructed as you might expect, but it set ("injected") later by the ControllerBuilder class. If you want a better understanding of the lifecycle you can either pull down the ASP.NET MVC framework (the source is available), or refer to: this page

If you need to access the Session then one way would be to override the "OnActionExecuting" method and access it there, as it will be available by that time.

However, as Andrei is suggesting, if your code is reliant on the Session then it could potentially be difficult to write unit tests, so perhaps you could consider wrapping the Session in a helper class which can then be swapped out for a different, non-web version when running under unit tests, therefore de-coupling your controller from the web.

link|flag
vote up 1 vote down

The Session is injected later in the life-cycle. Why do you need the session in the constructor anyway? If you need it for TDD you should wrap the session into a mockable object.

link|flag
1  
To add to Andrei Rinea, this is a specific example of the technique mentioned by him: iridescence.no/post/… – murki Jul 19 at 16:50
I want to access the Session during my constructors so that I can have access to previously stored session information. Yes, I could override the OnActionExecuting method, but this certainly isn't an elegant solution. – Chris Arnold Sep 3 at 9:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.