QueryableAttribute.EnsureStableOrdering Property

Gets or sets a value indicating whether query composition should alter the original query when necessary to ensure a stable sort order.

Namespace:  System.Web.Http
Assembly:  System.Web.Http.OData (in System.Web.Http.OData.dll)

Syntax

'Declaration
Public Property EnsureStableOrdering As Boolean 
    Get 
    Set
'Usage
Dim instance As QueryableAttribute 
Dim value As Boolean 

value = instance.EnsureStableOrdering

instance.EnsureStableOrdering = value
public bool EnsureStableOrdering { get; set; }
public:
property bool EnsureStableOrdering {
    bool get ();
    void set (bool value);
}
member EnsureStableOrdering : bool with get, set
function get EnsureStableOrdering () : boolean 
function set EnsureStableOrdering (value : boolean)

Property Value

Type: System.Boolean
A value indicating whether query composition should alter the original query when necessary to ensure a stable sort order. The default value is true.

Remarks

true indicates the original query should be modified when necessary to guarantee a stable sort order. false indicates the sort order can be considered stable without modifying the query. Query providers that ensure a stable sort order should set this value to false.

See Also

Reference

QueryableAttribute Class

System.Web.Http Namespace