Table of Contents

Class Sort

Namespace
GroupeIsa.Neos.ClusterCommunication.DistributedStore.Query
Assembly
GroupeIsa.Neos.ClusterCommunication.dll

Represents a sort of state store query.

public class Sort
Inheritance
Sort
Inherited Members

Constructors

Sort()

Initializes a new instance of the Sort class.

public Sort()

Sort(string, SortDirection?)

Initializes a new instance of the Sort class.

public Sort(string path, SortDirection? sortDirection = null)

Parameters

path string

The property path.

sortDirection SortDirection?

The sort direction.

Properties

Path

Gets or sets the path to sort.

[JsonPropertyName("key")]
public string Path { get; set; }

Property Value

string

SortDirection

Gets or sets the sort direction (Asc by default).

[JsonPropertyName("order")]
public SortDirection? SortDirection { get; set; }

Property Value

SortDirection?