DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / GroupView<TKey,TElement> Class
The type of the key used for grouping.
The type of the elements in the group view.
Members

In This Topic
    GroupView<TKey,TElement> Class
    In This Topic
    A group in a grouping view.
    Object Model
    GroupView<TKey,TElement> Class
    Syntax
    'Declaration
     
    Public NotInheritable Class GroupView
        (Of TKey,TElement) 
       Inherits View(Of TElement)
       Implements C1.LiveLinq.IObservableSource(Of TElement) 
    Type Parameters
    TKey
    The type of the key used for grouping.
    TElement
    The type of the elements in the group view.
    Remarks
    A grouping view is a result of a GroupBy operation on a live view. It is a collection of groups. Each group contains elements with the same key. That collection is a live view, and every group in itself is a live view, an object of type GroupView<TKey, TElement>.
    Inheritance Hierarchy

    System.Object
       C1.LiveLinq.LiveViews.View
          C1.LiveLinq.LiveViews.View<T>
             C1.LiveLinq.LiveViews.GroupView<TKey,TElement>

    See Also