我EntityFramework (ObjectContext)
在 LinqPad 中定义了 2 个不同的连接(命名为“Connection1”和“Connection2”)。
当我现在在 LinqPad 中定义一个查询(语句或程序)时,我必须从组合框中选择一个我想用于查询的连接。
假设我选择了连接“Connection1”,我现在可以针对上下文编写查询并执行它们,但我还需要使用使用“Connection2”的 ObjectContext。
是否可以使用我在 LinqPad 中指定的 Connections 用作 ConnectionString 来实例化新的 ObjectContext,或者 LinqPad 中是否有工厂来创建 EntityConnection。
例子:
Connection2Container context = new Connection2Container("Connection2");
// or
EntityConnection connection = LinqPadFactory.CreateEntityConnection("Connection2");
Connection2Container context = new Connection2Container(connection);