Allow additional typed DataContext instances to be created
LINQPad automatically instantiates a typed DataContext whenever you run a query with a database. It would be great if we could instantiate additional DataContexts that connect to different databases (with the same schema).

You can now go: var anotherDC = new TypedDataContex (“cx string…”)
-
Dominic commented
What if they are not of the same schema?
-
randy_astle commented
This is great!
I would love to test it -- if only I knew how to do so. :-( -
Shlomi commented
and also to write scripts which can connect to different DataContexts with different schama's.
Important for cross-db's scripts (for example - moving data to an archive db, with different schema).
Thanks.