DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / ViewOrder Enumeration

In This Topic
    ViewOrder Enumeration
    In This Topic
    Specifies whether and how a view must preserve item order if it exists in the source.
    Syntax
    'Declaration
     
    Public Enum ViewOrder 
       Inherits System.Enum
    public enum ViewOrder : System.Enum 
    Members
    MemberDescription
    NotPreservedSource order is not preserved. Preserving source order is not guaranteed even at view creation.
    PartiallyPreservedSource order is partially preserved. When the view is created, it preserves source order, but later, when changes occur in the source, view items added or modified to reflect those changes aren't guaranteed to appear at the same order position in the view as in the source.
    PreservedSource order is preserved completely. Order of items in the view is always the same as in the source (if source has a particular order), even after the view is maintained to reflect changes that occurred in the source.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.LiveLinq.LiveViews.ViewOrder

    See Also