我有两个数据库:
MasterDB
ChildDB
在MasterDB
我有以下表格:
Customer_Table
Tenant_Table
Customer-Tenant_Table
在Customer_Table
我有:
CustomerId
CustomerName
在Tenant_Table
我有:
TenantId
TenantName
在Customer-Tenant_Table
:
Customer-Tenant_Id
CustomerId
TenantID
现在ChildDB
我有一张桌子FacilityGroup_Table
,里面有:
TenantID
FacilityGroupId
- 等等……</li>
我在这里尝试做的是以下内容。在我看来,我有一个Customer_Table
从MasterDB
. 在此基础上,正在捕获CustomerName
相应的内容。CustomerID
现在,问题是我不知道如何使用它CustomerId
来获取相应的内容TenantId
并将其保存TenantId
在FacilityGroup_Table
我的ChildDB
. 我是 LINQ 的新手,所以我可以使用一些帮助。