Hello,
We're using v2.6/Adapter under .NET 4.0.
I've created a custom relation between two tables, yet when I attempt to fetch either table and prefetch the other the second table is not returned.
The only thing unique about these tables is that they're related via a compound primary key.
Table A has fields a,b,c where a is a PK
Table B has fields b,c,d,etc. where b,c are the PK
The designer let me create the relationship between A->b,c and B->b,c and the code does not kick an error.
I can even see the dynamic sql being generated (correctly) to fetch both tables.
However the child entity is always null.
I can describe further the database schema if necessary but it is really quite simple and straightforward.
Any ideas?
Thanks,
Wm