I would like to inform my visitors of which database they are currently interacting with. My application only has a single Entity Framework connection string in it's web.config. The database name (initial catalog) is part of my connection string stored in my web.config.
I can expose the ENTIRE connection string in the shared layout by including the following html.
You are connecting to <span class="databasename">@System.Configuration.ConfigurationManager.ConnectionStrings["MyConnectionStringName"].ConnectionString)</span>!
But I don't need the entire connection string only the database name. Is there a way to do this without involving a controller or instantiating a new SqlConnection()? Any suggestions?