Migrating from ObjectContext to DbContext code-generation, I realized that context class generated (which inherits from DbContext) has no constructor that receives connectionString neither EntityConnection (like ObjectContext child class had).
This is a problem in my application since I need to instantiate my context dynamically from the concrete Type, using a runtime generated connection string.