Interface ISortedResultRequest
This interface is defined to standardize to request a sorted result.
Namespace: Volo.Abp.Application.Dtos
Assembly: Volo.Abp.Ddd.Application.Contracts.dll
Syntax
public interface ISortedResultRequest
Properties
Sorting
Sorting information. Should include sorting field and optionally a direction (ASC or DESC) Can contain more than one field separated by comma (,).
Declaration
string Sorting { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Examples
Examples: "Name" "Name DESC" "Name ASC, Age DESC"