I could like to have multiple Renderaction on my view, but one thing considering is that the perfomance of renderAction in this case.
For example, i have several modules and i could like to render it on the view, there are 2 ways to do it:
- Query in controller, which is long to call, we can do async here
- In the view, call RenderAction, the queries will be called by each renderaction
can you tell which one is better and which one is faster?
Thank you