Hello,
I'm having the following situation:
I have a relation TravelFile -> countries
I'm working in a TravelFile, there is a grid that shows the related countries using a typedList.
I want to add a country to the travelFile, so I'm using TravelFile.Travelfilecountries.Add(country) and I'm adding the country to my unit of work with uow.AddForSave(country, true);
Now I would like to refresh the grid that is displaying the typedlist, but this should happen without uow.Commit, because the user can add several other countries before saving everything.
How can I make the typedlist refresh and view the data that will be saved later by the unit of work?
Thx,
Bernaert Dominique.