Hello!
Like the title says I am trying accomplish effectively what would be a simple JOIN clause would produce in SQL between 2 models I have. One being an Aggregate model, the other being Basic and both having the account Id in common.
Illustration:
Agg Model Basic Model<br /> _Account__|__# of Child Accounts__ _Account__|__Columns__ A | 1 A | data B | 8 B | data C | 1 C | data D | 4 D | data Want: _Account__|__# of Child Accounts__|__Columns etc__ A | 1 | data B | 8 | data C | 1 | data D | 4 | data
The aggregate model counts accounts and groups them by parent, resulting in a list of accounts that corresponds with the accounts in the basic model (the parent accounts).
Does anyone know if/how this may be possible?
