Im not sure how i could include it in the typed list fetch?
I could do something like:
ResultsetFields fields = new ResultsetFields(3);
fields.DefineField(SomethingEntityFieldIndex.FieldId, 0, "FieldId");
But the problem is i have a table with multiple foreign keys refrencing the same table. So it would end up with:
ResultsetFields fields = new ResultsetFields(3);
fields.DefineField(SomethingEntityFieldIndex.FieldId, 0, "FieldId");
fields.DefineField(SomethingEntityFieldIndex.FieldId, 1, "FieldId");
Is there a way to specify which table relation to use?