我看到有Include()和ThenInclude(),但如何处理需要一次加载多个表的情况?
说我有“项目表”,“分支表”,“公司表”,“国家表”和“状态表”。
我正盯着“项目表”,但是我也需要分行信息,公司名称,分行所属的国家和分行所属的州。
我已经走了
dbContext.Items.Include(x => x.Branch).ThenInclude(x => x.Company)
但是我没有公司,也没有公司,显然我做不到
dbContext.Items.Include(x => x.Branch).ThenInclude(x => x.Country).ThenInclude(x => x.State).ThenInclude(x => x.Company)