ComponentOne Data Source for Entity Framework
C1.Data.DataSource Namespace / ClientViewSource Class / GroupDescriptors Property

In This Topic
    GroupDescriptors Property
    In This Topic
    Gets the collection of GroupDescriptor objects used to organize the loaded entities into groups.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property GroupDescriptors As GroupDescriptorCollection
    public GroupDescriptorCollection GroupDescriptors {get;}
    Remarks

    Grouping only works in WPF and Silverlight. It is ignored in WinForms because WinForms data binding does not support grouping.

    When a GroupDescriptor is applied, the data will inherently be sorted by the grouped property. To force a grouped property to be sorted in descending order, add a SortDescriptor to the SortDescriptors collection for that property using the Descending direction.

    See Also