Show / Hide Table of Contents

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"

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft