I have some navigation things that need to hit the database every time a page has been requested. In Rails I would just set an instance variable in the ApplicationController.rb and that would be available to every controller/view.
Now I see that all my controllers inherent from : Controller in .NET MVC. Can I open a partial class for Controller and add an action filter that it would call every time a page is requested?
Or should I create an ApplicationController : Controller, and have all my other controllers inherit from that?