Using the System.Data.SqlClient provider it is possible to pass a connection string to the DbContext constructor as follows;
public DataContext() //DbContext
{
string ConnString = "Connection String Here";
this.Database.Connection.ConnectionString = ConnString;
Database.SetInitializer<DataContext>(null);
}
Is there a similar way of passing the connection string to the DbContext for the JetEntityFrameworkProvider without using the app.config settings?