sadly i don't think that does what i need.
i saw it used in the documentation, and it was used to create a string that is referenced later in a predicate expression. i don't need that.
my current llblgen code is:
bucket.Relations.Add(TransactionsEntity.Relations.AccountsEntityUsingAccountId2);
bucket.Relations.Add(AccountsEntity.Relations.StoresEntityUsingDefaultAccountId);
// 1 bucket.Relations.Add(TransactionsEntity.Relations.AccountsEntityUsingAccountId1);
// 2 bucket.Relations.Add(AccountsEntity.Relations.CustomersEntityUsingDefaultAccountId);
note the two commented out lines. line 2 needs to refer to the 'account' part that is joined in line 1. is it possible to do that?