I'd like to hear your opinions and maybe better suggestions for the following scenario:

I have define a custom ActionFilter that does some job and comes out with some value. I would like to use that value in controller actions and in models.

Now, I could use TempData to pass this value from the ActionFilter to any controller action method, then distribute this value over to all models that get passed to returned views.

I'm sure it will work but this TempData will be there in session where and when nobody actually needs it anymore. The value is supposed to be used exclusively in the code during the time of a single request after which it effectively invalidates.

I have come up with two options:

  1. In ActionFilter, I set this value in TempData in OnActioExecuting() and I remove it in OnActionExecuted(). Do I understand it correctly that by the time OnActionExecuted is called, the controller action has finished, the response has already been generated and this TempData content hasn't made its way to the session YET?

  2. In any of my custom static classes (logic) I just define a public property for this value and I use it whenever needed. Will this static field not be lost between OnActionExecuting() and actually executing the controller method? Are there any other issues with possible loosing this value during the request processing on the server?

Are there any other/better options I havem't considered yet?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 7 down vote accepted

I have found that using ActionParameters makes your code very easily testable. You can do it like so:

// inside your actionfilter
public override void OnActionExecuting(ActionExecutinContext context)
{
	var someData = // ... load some data

	context.ActionParameters["someData"] = someData;
}


// and then in your action method
[ProvideSomeData]
public ViewResult Index(SomeData someData)
{
	// someData will be populated in here
}
link|improve this answer
Quite interesting actually. Is it so that action constructor parameters will automatically be mapped to ActionParameters collection keys? – User May 3 '09 at 20:02
Yes action parameters should be the prefered way to pass value in the controller. – kazimanzurrashid May 3 '09 at 20:41
Ultimately I liked this approach, though it definitely denies the DRY principle. Thanks for the tip. – User May 5 '09 at 13:33
I don't think it denies the DRY principle. Remember, if you need this in every action inside a controller, you can just apply the attribute to the controller class. – mookid8000 May 5 '09 at 17:48
feedback

re: #2

Just wanted to point out that the problem with a static field is that multiple requests will all be using the same static field. If you have two requests executing concurrently there is a always a chance that request B will overwrite request A's value and you'll be using the wrong value when the action for request A executes.

I'd avoid using static members to hold request specific information.

link|improve this answer
Thanks. I was afraid of something like that. So, these static fields are shared among all requests and not each request gets its own context? – User May 3 '09 at 20:23
2  
Right - public static fields and properties are visible to every thread in the application. – OdeToCode May 3 '09 at 20:26
feedback

Your Answer

 
or
required, but never shown

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