Lets say I have two tables related with 1:n (Master.Id->Child.MasterId)
Master
Id
Child
Id
MasterId
And I need some sort of lookup control for displaying and picking a proper master. If I set key value for this lookup to be "Master.Id" then Child.MasterId is properly read and set IOW everything works. But. Child.Master (related entity) is not populated and remains null.
So, what is the proper way to have set both MasterId field and Master entity at same time (using lookup control)?