Linq2db:通过预先加载连接表

Linq2db: join tables with eager loading

我在我的项目中使用 linq2db ORM 并具有以下数据库模式(简化):

我有以下获取用户信息的方法:

public async Task<User> GetUser(int id)
{
  var user =
    await (
        from u in _db.Users
                     .LoadWith(u => u.Accounts)
                     .ThenLoad(a => a.Transactions)
        where u.Id == id
        from lang in _db.Languages.LeftJoin(l => l.Id == u.LanguageId)
        select u)
      .FirstOrDefaultAsync();

  return user;
}

但是,我想获取有关每个帐户的所有限制和聚合器的信息。我相信应该有一种有效的方法来做到这一点。有人可以帮我吗?

当我们使用LoadWith()时,使用ThenLoad()后,会从根(User table)开始,像这样:

from u in _db.Users
                 .LoadWith(u => u.Accounts)
                    .ThenLoad(a => a.Transactions)
                 .LoadWith(u => u.Accounts)
                    .ThenLoad(a => a.Limits)
                 .LoadWith(u => u.Accounts)
                    .ThenLoad(a => a.Aggregators);

You can also use Include() and ThenInclude() instead of LoadWith() and ThenLoad(). Include vs Load.