I'm binding an EntityCollection that has relations to other EntityCollections to the Windows Forms Datagrid. As far as I understand, by setting SupportsSorting=true I get client sorting behaviour. This fine works for the indicated base collection.
void BindCollection(EntityCollectionBase ecb)
{
ecb.SupportsSorting=true;
dataGrid1.DataSource = ecb;
dataGrid1.ReadOnly = true;
}
However, when the user navigates to a related collection in the grid, the releated collections returned by GetMulti.... have SupportsSorting set to false (the default Value). Is there an elegant way to set this to true so that the user can sort the grid after navigating to a related collection?
Erwin