RandomEngy
RandomEngy

Reputation: 15413

Controller with some synchronous and some asynchronous actions?

Is there a way to have a controller with some synchronous and some asynchronous methods on it? I have one action that would benefit from using an asynchronous model, but I don't want to drag the rest of the actions with it if I can help it.

So far the only way I've seen to do MVC async is to change the whole controller to an AsyncController.

Upvotes: 2

Views: 297

Answers (1)

RandomEngy
RandomEngy

Reputation: 15413

Stupid question I guess. Looks like you can just put synchronous actions on an AsyncController.

Upvotes: 2

Related Questions