你如何执行这样的查询;
SELECT
c.Name
FROM db1..TableA a(nolock)
join db2..TableA b(nolock) on a.id = b.id
join db2..TableB c(nolock) on b.id = c.id
join db2..TableC as d on c.id = d.id
where c.id = '2314'
和?SQLConnector
_ SQLCommand
似乎您一次只能连接到一个数据库。
我意识到我可以有两个实例,SQLConnector
然后在我的 C# 代码中加入结果,但显然这将是一个糟糕的解决方案。有什么简单的解决方案吗?