Table of Contents

Class Criteria

Namespace
Dynamicweb.DataManagement
Assembly
Dynamicweb.DataManagement.dll

Query expression to execute.

public class Criteria
Inheritance
Criteria
Inherited Members

Constructors

Criteria()

public Criteria()

Criteria(string, SelectClause, WhereClause, OrderByClause)

public Criteria(string table, SelectClause select, WhereClause where, OrderByClause orderBy)

Parameters

table string
select SelectClause
where WhereClause
orderBy OrderByClause

Properties

Custom

public string Custom { get; set; }

Property Value

string

IsCustom

public bool IsCustom { get; }

Property Value

bool

Limit

public int Limit { get; set; }

Property Value

int

OrderBy

Order by. Nullable.

public OrderByClause OrderBy { get; set; }

Property Value

OrderByClause

Select

public SelectClause Select { get; set; }

Property Value

SelectClause

Table

public string Table { get; set; }

Property Value

string

Where

public WhereClause Where { get; set; }

Property Value

WhereClause
To top