Hello,
I have table A and table B. There is a relationship between the two but it's not based on a PK or FK so I have to build the relationship dynamically using DynamicRelation. I need to fetch all fields from table A into a TableAEntity object and all fields from table B into an object within TableAEntity - TableBEntity. Seeing as this is all dynamic the object TableBEntity will not exist within the TableAEntity so is there another way to go about this? - Aside from creating a view with all these fields.
Thanks