我有两个表,它们在 azure 数据库管理器中被索引。所以我在第二个表中有外键。我的桌子是例如
OrderTable (OrderId,OrderDate,CustomerId) /CustomerId 是我的外键
客户表(客户 ID、客户名称、....)
所以我只想要这样的查询:
Select *
From OrderTable o1,CustomerTable c1
Where c1.CustomerId=o1.CustomerId
我使用了 microsoft 示例 TodoItems,并且我已经可以像这样在一个表上进行查询:
items = await todoTable
.Where(todoItem => todoItem.Date >= DateTime.Now)
.ToCollectionAsync();
.ToListAsync();
因此,在我的应用程序中,我得到了两个表,是否有任何选项可以像上面那样查询连接的表?