I have a WPF gridview in which I specify the datacolumns and load the data simply with (C#)::
gridFeeEarnerGroups.ItemsSource = Bill.FeeEarnerGroups;
"FeeEarnerGroups" is of type List<FeeEarnerGroup> and this works fine.
I need a sub table to use the data from FeeEarnerGroup.RateSets which is of type List<RateSet> , showing each (0 or more) RateSet per FeeEarnerGroup row.
I've looked at the documentation and tried a few things but I'm struggle to get this working.
Can anyone help please?