C#, March 2st Build, V2
[Note: I can't change the database
]
**
SQL Schema Info:**
I have a parent table with a primary key a composite of 5 fields (yes 5
)
The child table has a primary key of 2 fields.
The relationship between the two tables used 2 common fields.
My question is:
How do I create a relationship between the parent/child so that in code I could write something like MyParent.MyChilds after I call MyParent.GetMulti(...)
Is there a place in the **MyParentEntity **code I could use partial classes to add this relationship so that the other developers don't have to each time add this complex relationship?
Thanks,
Ian