Multiple connections (same schema)
Options
How can I manually create/instantiate a 2nd connection to a different database (typed data context, EF Core) with an identical schema?
Comments
-
var db = new TypedDataContext ("<connection string>"); db.Customers.Dump();
-
Thanks!