My problem is that I have to deal somehow with cases when database is down in my MVC application. So, should I like try{} catch{}
to open connection in every controller? Or what is the best practice?
Note: For sample database access is isolated in few "manager" classes that work repository kind of way.