We use Entity Framework 5, but have a requirement to ALSO use a normal database connection from the application for some custom SQL we need to perform.
So, I am creating
You can get the connectionstring used by EF by using the following:
MyDbContext.Database.Connection.ConnectionString
Or as mark says you can initalise the context with a sqlconnection