2

I'm using LINQPad, and am trying to make the following scenario work.

I've got a SQL server connection, and an Oracle connection. I need to query from both contexts within the same LINQPad file. I do NOT need cross-db capabilities (server side joins, etc) akin to what is addressed in (LINQPad, using multiple datacontexts), but I do need to be able to access each independently. Is there any way to do this?

wonea
  • 4,783
  • 17
  • 86
  • 139
Grant H.
  • 3,689
  • 2
  • 35
  • 53

1 Answers1

2

The only way to do this at present is to build the additional typed data context(s) in Visual Studio, and then reference the output assemblies from LINQPad.

Joe Albahari
  • 30,118
  • 7
  • 80
  • 91