Is it a good idea to put content access logic in a BaseController?
I'm developing an ASP.NET MVC application where the content for any page can be pulled from the database, if it exists, and displayed on the page. This is to make it possible for non-technical persons to edit the content without having to go into the source code (e.g. views) and change things. The way I'm doing this is, each controller...