DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / ViewRowCollection Class / Indexes Property

In This Topic
    Indexes Property (ViewRowCollection)
    In This Topic
    Gets the collection of indexes for this view allowing to search for ViewRow objects.
    Syntax
    'Declaration
     
    Public MustOverride ReadOnly Property Indexes As IndexCollection(Of ViewRow)
    public abstract IndexCollection<ViewRow> Indexes {get;}
    Remarks
    ViewRowCollection can be indexed, just like other LiveLinq data sources, to optimize searches for ViewRow objects. It implements the C1.LiveLinq.Indexing.IIndexedSource<T> interface.
    See Also