I have a query that joins across 7 tables. The fields i want to retrive are all on one of the joined tables (not the first table just after the FROM clause). Is there a way for me to specify the alias for the joined table?
e.g. what i want is something like:
this.Adapter.FetchEntityCollection(itemCollection,"tableAlias", filter, -1, sorter, page, pageSize);
I know i can do this:
ResultsetFields fields = new ResultsetFields(1);
fields.DefineField(ItemFieldIndex.ItemUrn, 0, "tableAlias");
to specify the exact fields i want, but i want to retrieve the data in an EntityCollection.
Thanks.