LinqPad 和多个 Oracle 连接
LinqPad 是否可以在一个查询中切换使用的数据库连接?
据我所知,您只能在 SqlConnections 上执行跨数据库联接,而不能在 OracleConnections 上执行跨数据库联接。
所以我想执行一个请求来收集连接数据,更改当前连接 并通过第二次选择获取所需的数据。
像这样的东西:
Use Connection1;
var result = from a in b [...]
Use Connection2;
var nextResult = from x in y [...]
Is it possible in LinqPad to switch the used database connection within one query?
Afaik you can only perform a cross-database join on SqlConnections and not on OracleConnections.
So i would like to perform one request to gather the join data, change the current connection
and get the needed data via a second select.
Something like:
Use Connection1;
var result = from a in b [...]
Use Connection2;
var nextResult = from x in y [...]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非数据库具有相同的架构,否则这是不可能的,在这种情况下,您可以使用新的连接字符串重新实例化 TypedDataContext。
This is not possible unless the databases have the same schema, in which case you can re-instantiate the TypedDataContext with a new connection string.