LinqPad 和多个 Oracle 连接

发布于 2024-12-29 07:33:33 字数 310 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

_蜘蛛 2025-01-05 07:33:33

除非数据库具有相同的架构,否则这是不可能的,在这种情况下,您可以使用新的连接字符串重新实例化 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文