this is the simplified example similar to my prolem. Suppose that you have 2 sql tables: Car and Owner
Table Car has foreign key IDOwner. Lightswitch data model has dataitems Car and Owner, and
dataitem Car has subobject Owner which is null by default. I want to set Onwer subobject through code and not by auto generated AutoCompleteBox or something similar. I wrote the code this way:
Owner ow = this.DataWorkspace.MyData.Owners.Where(x => x.IDOnwer = SOME_ID).First(); //at this point variable ow is regullary loaded not null object - I saw it in the debugger
this.CarDataItem.Owner = ow;
//at this point ow is still loaded not null object but this.CarDataItem.Owner is still null - //also checked in the debugger
My question is what's the proper way to change this type of dataitem's subobjects through code?
If I open screen designer and drag Owner property of CarDataItem on the screen, I will get AutoCompleteBox where I can select Owner subobject, but I don't want that. I want to do this
automatically throug code. Thank you very much in advance!