Table of Contents

Class OrderByClause

Namespace
Dynamicweb.DataManagement
Assembly
Dynamicweb.DataManagement.dll

Order by clause for query.

public class OrderByClause
Inheritance
OrderByClause
Inherited Members

Constructors

OrderByClause()

Default constructor

public OrderByClause()

OrderByClause(string, OrderBy)

Constructs new OrderByClause

public OrderByClause(string fieldName, OrderByClause.OrderBy direction)

Parameters

fieldName string

Field name

direction OrderByClause.OrderBy

Sort order direction

OrderByClause(string, string)

Constructs new OrderByClause

public OrderByClause(string fieldName, string direction)

Parameters

fieldName string

Field name

direction string

Sort order direction

Properties

Direction

Sort order direction

public OrderByClause.OrderBy Direction { get; set; }

Property Value

OrderByClause.OrderBy

FieldName

Name of field

public string FieldName { get; set; }

Property Value

string

Methods

DirectionText()

Shows direction field value as string

public string DirectionText()

Returns

string
To top