Idiomatic default sort using WCF RIA, Entity Framework 4, Silverlight 4?
- by Duncan Bayne
I've got two Silverlight 4.0 ComboBoxes; the second displays the children of the entity selected in the first:
<ComboBox
Name="cmbThings"
ItemsSource="{Binding Path=Things,Mode=TwoWay}"
DisplayMemberPath="Name"
SelectionChanged="CmbThingsSelectionChanged" />
<ComboBox
Name="cmbChildThings"
ItemsSource="{Binding…