Table of Contents

Class SelectClause

Namespace
Dynamicweb.DataManagement
Assembly
Dynamicweb.DataManagement.dll

Simple select clause for query. Can be select * (all) or select [list of fields]

public class SelectClause
Inheritance
SelectClause
Inherited Members

Constructors

SelectClause()

Default constructor

public SelectClause()

SelectClause(IEnumerable<string>)

Constructs new Clause using fields data

public SelectClause(IEnumerable<string> fields)

Parameters

fields IEnumerable<string>

Collection of fields

Properties

All

Defines "select all" behavior

public bool All { get; set; }

Property Value

bool

Fields

List of fields

public List<string> Fields { get; }

Property Value

List<string>
To top