Table of Contents

Class DataQueryBase<TQuery>

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Queries particular database data or defines parameters for data selection

public abstract class DataQueryBase<TQuery> : DataQuerySettingsBase<TQuery>, IDataQuery<TQuery>, IDataQuerySettings<TQuery>, IWhereCondition<TQuery>, IQueryParameters<TQuery>, IDataQuery, IDataQuerySettings, IWhereCondition, IQueryParameters, IQueryObjectWithValue, IQueryObject where TQuery : DataQueryBase<TQuery>, new()

Type Parameters

TQuery
Inheritance
object
DataQueryBase<TQuery>
Implements
IDataQuery<TQuery>
Derived
Inherited Members
Extension Methods

Constructors

DataQueryBase(string)

Creates a query based on the given query name

protected DataQueryBase(string queryName)

Parameters

queryName string

Full query name

DataQueryBase(string, string)

Creates a query based on the given query name

protected DataQueryBase(string className, string queryName)

Parameters

className string

Class name

queryName string

Query name

Properties

AllowMaterialization

If true, the query allows materialization

public virtual bool AllowMaterialization { get; set; }

Property Value

bool

ClassName

Class name

public virtual string ClassName { get; set; }

Property Value

string

ConnectionStringForced

If true, the connection string was set explicitly

protected bool ConnectionStringForced { get; }

Property Value

bool

ConnectionStringName

Connection string name

public virtual string ConnectionStringName { get; set; }

Property Value

string

Count

Number of total items in the collection

public virtual int Count { get; }

Property Value

int

CustomQueryText

Custom query text

public virtual string CustomQueryText { get; set; }

Property Value

string

DataSource

Data source that provides the query data. If not set, the query queries the database directly

public virtual DataQuerySource DataSource { get; set; }

Property Value

DataQuerySource

DefaultOrderByColumns

Default order by columns used in case if needed, and order by is not specified

public virtual string DefaultOrderByColumns { get; set; }

Property Value

string

FullQueryName

Represents a full query name of the query

public virtual string FullQueryName { get; }

Property Value

string

HasDataSource

Returns true if the query has specific data source

public virtual bool HasDataSource { get; }

Property Value

bool

IncludeBinaryData

If true, the query includes the object binary data. Default is true

public virtual bool IncludeBinaryData { get; set; }

Property Value

bool

IsCombinedQuery

If true, this query is combined from several queries. When additional parameters are applied to it, it will be wrapped into a nested query.

public virtual bool IsCombinedQuery { get; set; }

Property Value

bool

Name

Object name, empty by default

public override string Name { get; }

Property Value

string

NextPageAvailable

Returns true if the next page is available.

public bool NextPageAvailable { get; }

Property Value

bool

QueryName

Query name

public virtual string QueryName { get; set; }

Property Value

string

QueryText

Query text

public virtual string QueryText { get; }

Property Value

string

Result

DataSet with the result

public virtual DataSet Result { get; protected set; }

Property Value

DataSet

ReturnsSingleColumn

Returns true if the query returns single column

public virtual bool ReturnsSingleColumn { get; set; }

Property Value

bool

SupportsReader

Gets a value indicating whether the query supports the ExecuteReader(CommandBehavior, bool) method. Otherwise the Execute() method must be used.

public virtual bool SupportsReader { get; }

Property Value

bool

Tables

Collection of the result tables

public virtual DataTableCollection Tables { get; }

Property Value

DataTableCollection

TotalRecords

Gets the number of total records when paging is used if the query setting GetTotalRecordsForPagedQuery is set to true. Or gets the number of items in the retrieved page.

public virtual int TotalRecords { get; protected set; }

Property Value

int

Remarks

Gets updated once the query executes.

Methods

ApplyOrderBy(IDataQuerySettings, IDataQuery)

Applies order by from the given settings to the inner query

protected static void ApplyOrderBy(IDataQuerySettings settings, IDataQuery query)

Parameters

settings IDataQuerySettings

Source settings

query IDataQuery

Target query

ApplyParametersTo(IQueryObject)

Applies this query parameters to the target object

public override void ApplyParametersTo(IQueryObject target)

Parameters

target IQueryObject

Target object defining parameters

ApplyProperties(IDataQuery, bool)

Applies main query properties to the given query to ensure synchronized state before execution

protected virtual void ApplyProperties(IDataQuery query, bool multiQuery = false)

Parameters

query IDataQuery

Query to prepare

multiQuery bool

If true, the query is an inner query within multi-query

ApplySettings(AbstractQueryObject)

Applies the given settings to the query

public virtual IDataQuery ApplySettings(AbstractQueryObject parameters)

Parameters

parameters AbstractQueryObject

Parameters to apply

Returns

IDataQuery

ApplySettings(Action<DataQuerySettings>)

Applies the given settings to the query

public virtual IDataQuery ApplySettings(Action<DataQuerySettings> parameters)

Parameters

parameters Action<DataQuerySettings>

Parameters to apply

Returns

IDataQuery

ApplyTopN(int, IDataQuery)

Applies TOP N settings to the given query if it is more restrictive than the current query settings.

protected bool ApplyTopN(int topN, IDataQuery query)

Parameters

topN int

Top N to apply

query IDataQuery

Target query

Returns

bool

Returns true if TOP N was applied to the inner query

AsColumn(string)

Converts the query to the query column using this query as nested

public virtual IQueryColumn AsColumn(string columnName)

Parameters

columnName string

Column name

Returns

IQueryColumn

AsIDQuery()

Creates an ID query from the given query

public virtual IDataQuery AsIDQuery()

Returns

IDataQuery

AsMaterializedList(string, bool)

Makes a materialized list from the given query

public virtual IDataQuery AsMaterializedList(string columnName = null, bool distinct = false)

Parameters

columnName string

Column name to output

distinct bool

If true, only distinct values are selected

Returns

IDataQuery

AsNested<TResult>(NestedQuerySettings)

Creates a nested query from the given query

public virtual TResult AsNested<TResult>(NestedQuerySettings settings = null) where TResult : IDataQuery<TResult>, new()

Parameters

settings NestedQuerySettings

Settings

Returns

TResult

Type Parameters

TResult

AsSingleColumn(string, bool)

Creates a single column query from the given query

public virtual IDataQuery AsSingleColumn(string defaultColumn = null, bool forceColumn = false)

Parameters

defaultColumn string

Specific column to use in case query doesn't return single column yet

forceColumn bool

If true, the given column is forced to the output

Returns

IDataQuery

AsSubQuery()

Modifies the query to be able to be used as a sub-query, e.g. for usage in WHERE A IN ([query]). Ensures single column result, and removes order by from the result.

public virtual IDataQuery AsSubQuery()

Returns

IDataQuery

AsValue()

Gets a query expression representing this object as a value

public virtual IQueryExpression AsValue()

Returns

IQueryExpression

As<TNewType>()

Changes the type of the query to another type

public virtual TNewType As<TNewType>() where TNewType : IDataQuery, new()

Returns

TNewType

Type Parameters

TNewType

BinaryData(bool)

Sets whether the binary data should be included to the result

public virtual TQuery BinaryData(bool binary)

Parameters

binary bool

Include binary data?

Returns

TQuery

Changed()

Marks the object as changed

public override void Changed()

CopyPropertiesTo(IQueryObject)

Copies the properties to the target query.

public override void CopyPropertiesTo(IQueryObject target)

Parameters

target IQueryObject

Target query

DataSourceChanged()

Marks the object as changed when data source changes

protected virtual void DataSourceChanged()

Except(TQuery)

Gets the intersection of this data query with another query

public virtual TQuery Except(TQuery query)

Parameters

query TQuery

Query to intersect with

Returns

TQuery

Execute()

Executes the current query and returns it's results as a System.Data.DataSet.

public virtual DataSet Execute()

Returns

DataSet

ExecuteNonQuery()

Executes the current query and returns the number of rows affected.

public virtual int ExecuteNonQuery()

Returns

int

ExecuteNonQueryAsync(CancellationToken?)

Asynchronously executes the current query and returns a task returning the number of rows affected.

public virtual Task<int> ExecuteNonQueryAsync(CancellationToken? cancellationToken = null)

Parameters

cancellationToken CancellationToken?

The cancellation instruction.

Returns

Task<int>

ExecuteReader(CommandBehavior, bool)

Executes the current query and returns it's results as an System.Data.IDataReader. The SupportsReader flag indicates whether this operation is supported.

public virtual IDataReader ExecuteReader(CommandBehavior commandBehavior = CommandBehavior.Default, bool newConnection = false)

Parameters

commandBehavior CommandBehavior

Command behavior for the reader.

newConnection bool

If true, the reader will be executed using its own dedicated connection.

Returns

IDataReader

Returns the data reader resulting from query execution, or null.

Remarks

The method returns null if ReturnsNoResults indicates the query won't result in any results.

Exceptions

NotSupportedException

Thrown when the query does not support reader.

See Also

ExecuteReaderAsync(CommandBehavior, bool, CancellationToken?)

Asynchronously executes the current query and returns it's results as an System.Data.IDataReader. The SupportsReader flag indicates whether this operation is supported.

public virtual Task<IDataReader> ExecuteReaderAsync(CommandBehavior commandBehavior = CommandBehavior.Default, bool newConnection = false, CancellationToken? cancellationToken = null)

Parameters

commandBehavior CommandBehavior

Command behavior for the reader.

newConnection bool

If true, the reader will be executed using its own dedicated connection.

cancellationToken CancellationToken?

The cancellation instruction.

Returns

Task<IDataReader>

Returns a task returning either the data reader resulting from query execution, or null.

Remarks

The method returns a task returning null if ReturnsNoResults indicates the query won't result in any results.

Exceptions

NotSupportedException

Thrown when the query does not support reader.

ExecuteScalar()

Executes the current query and returns the first column of the first row in the result set returned by the query. Additional columns or rows are ignored.

public virtual object ExecuteScalar()

Returns

object

ExecuteScalarAsync(CancellationToken?)

Asynchronously executes the current query and returns a task returning the first column of the first row in the result set returned by the query. Additional columns or rows are ignored.

public virtual Task<object> ExecuteScalarAsync(CancellationToken? cancellationToken = null)

Parameters

cancellationToken CancellationToken?

The cancellation instruction.

Returns

Task<object>

ExpandColumns()

Expands the columns within this query

public virtual TQuery ExpandColumns()

Returns

TQuery

ForEachPage(Action<TQuery>, int)

Executes the given action for each page (DataSet) in the results. If the query is not set up as a paged query before calling this method and pageSize is not set, executes the action once with the current results.

public virtual void ForEachPage(Action<TQuery> pageAction, int pageSize = -1)

Parameters

pageAction Action<TQuery>

Action which will be executed for each page

pageSize int

Page size. 0 means no processing page-by-page. By default uses current paging settings. Page size of the query is set to the original value after this method finishes.

ForEachRow(Action<DataRow>, int)

Executes the given action for each item (DataRow) in the result. Processes the items in batches of the given size.

public virtual void ForEachRow(Action<DataRow> rowAction, int batchSize = -1)

Parameters

rowAction Action<DataRow>

Row action

batchSize int

Batch size. 0 means no batch processing. By default uses current paging settings.

From(QuerySource)

Defines the source of the data (table, view or a nested query)

public virtual TQuery From(QuerySource source)

Parameters

source QuerySource

Source

Returns

TQuery

GetAsyncEnumerableResult(CommandBehavior, bool, CancellationToken)

Exposes an enumerator for asynchronous iteration over data records representing the result of this query.

public virtual IAsyncEnumerable<IDataRecord> GetAsyncEnumerableResult(CommandBehavior commandBehavior = CommandBehavior.Default, bool newConnection = false, CancellationToken cancellationToken = default)

Parameters

commandBehavior CommandBehavior

Command behavior for the underlying reader.

newConnection bool

If true, the underlying reader will be executed using its own dedicated connection.

cancellationToken CancellationToken

The cancellation instruction.

Returns

IAsyncEnumerable<IDataRecord>

Exposes an enumerator that provides asynchronous iteration over an System.Data.IDataRecord instances.

Remarks

The returned data records can contain additional system columns (TOTAL_RECORDS) when a paged query is being executed. The columns support the framework infrastructure and should not be relied on in custom code.

Exceptions

NotSupportedException

Thrown when the query does not support reader.

GetAvailableColumns()

Gets the list of all available columns for this query

protected virtual List<string> GetAvailableColumns()

Returns

List<string>

GetBinaryColumns()

Gets the binary columns for this query

protected List<string> GetBinaryColumns()

Returns

List<string>

GetClassName()

Gets the class name for current query

protected virtual string GetClassName()

Returns

string

GetClassStructureInfo()

Gets the class structure info for this query

protected virtual ClassStructureInfo GetClassStructureInfo()

Returns

ClassStructureInfo

GetCompleteQueryParameters(DataQuerySettings)

Returns query parameter container filled with the complete settings of current query.

public virtual QueryParameters GetCompleteQueryParameters(DataQuerySettings settings = null)

Parameters

settings DataQuerySettings

Query settings to use

Returns

QueryParameters

Remarks

Wraps distinct paged query as nested so the row number column required for paging doesn't thwart the distinct selection.

GetCompleteSettings(IDataQuery)

Gets the complete parameters for the query execution. The parameters are always a new instance of DataQuerySettings which can be further modified without any impact to the query itself.

public virtual DataQuerySettings GetCompleteSettings(IDataQuery executingQuery = null)

Parameters

executingQuery IDataQuery

Executing query for which the parameters are retrieved

Returns

DataQuerySettings

GetData()

Executes the query. Sets the total records number during execution.

protected virtual DataSet GetData()

Returns

DataSet

Returns data from the database or from custom data source DataSource if provided.

GetDataContainerResult(CommandBehavior, bool)

Gets an enumeration of IDataContainers representing the result of this query.

public virtual IEnumerable<IDataContainer> GetDataContainerResult(CommandBehavior commandBehavior = CommandBehavior.Default, bool newConnection = false)

Parameters

commandBehavior CommandBehavior

Command behavior for the underlying reader.

newConnection bool

If true, the underlying reader will be executed using its own dedicated connection.

Returns

IEnumerable<IDataContainer>

Returns the enumeration resulting from query execution.

Remarks

Use the method when mapping the query result to custom objects instead of BaseInfos. The returned IDataContainer instances do not guarantee thread-safety for write operations.

The method opens a new CMSConnectionContext after opening the DB reader within the original connection. Inherently, any DB requests performed during results processing (e.g. in a foreach loop) are executed on a separate connection.

The returned data records can contain additional system columns (TOTAL_RECORDS) when a paged query is being executed. The columns support the framework infrastructure and should not be relied on in custom code.

Exceptions

NotSupportedException

Thrown when the query does not support reader.

GetDataContainerResultAsync(CommandBehavior, bool, CancellationToken?)

Asynchronously gets an enumeration of IDataContainers representing the result of this query.

public virtual Task<IEnumerable<IDataContainer>> GetDataContainerResultAsync(CommandBehavior commandBehavior = CommandBehavior.Default, bool newConnection = false, CancellationToken? cancellationToken = null)

Parameters

commandBehavior CommandBehavior

Command behavior for the underlying reader.

newConnection bool

If true, the underlying reader will be executed using its own dedicated connection.

cancellationToken CancellationToken?

The cancellation instruction.

Returns

Task<IEnumerable<IDataContainer>>

Returns a task returning the enumeration resulting from query execution.

Remarks

Use the method when mapping the query result to custom objects instead of BaseInfos. The returned IDataContainer instances do not guarantee thread-safety for write operations.

The method opens a new CMSConnectionContext after opening the DB reader within the original connection. Inherently, any DB requests performed during results processing (e.g. in a foreach loop) are executed on a separate connection.

The returned data records can contain additional system columns (TOTAL_RECORDS) when a paged query is being executed. The columns support the framework infrastructure and should not be relied on in custom code.

Exceptions

NotSupportedException

Thrown when the query does not support reader.

GetDataFromDB()

Executes the query and returns result as a System.Data.DataSet.

protected virtual DataSet GetDataFromDB()

Returns

DataSet

Remarks

Sets total records into TotalRecords field after execution.

GetDataFromDataSource()

Executes the current query over data source and returns it's results as a System.Data.DataSet.

protected virtual DataSet GetDataFromDataSource()

Returns

DataSet

GetDataSourceName()

Gets data source identifier that represents the location from which the data are obtained.

protected override string GetDataSourceName()

Returns

string

Remarks

Source identifiers are used to determine whether sub queries should be materialized or inserted directly into parent query.

GetDefaultOrderBy()

Gets the default order by columns

protected virtual string GetDefaultOrderBy()

Returns

string

GetDefaultSingleColumn()

Gets the default single column for the query

protected virtual string GetDefaultSingleColumn()

Returns

string

GetDefaultSource()

Gets the default source for this query

protected override QuerySource GetDefaultSource()

Returns

QuerySource

GetEnumerableResult(CommandBehavior, bool)

Gets an enumeration of data records representing the result of this query.

public virtual IEnumerable<IDataRecord> GetEnumerableResult(CommandBehavior commandBehavior = CommandBehavior.Default, bool newConnection = false)

Parameters

commandBehavior CommandBehavior

Command behavior for the underlying reader.

newConnection bool

If true, the underlying reader will be executed using its own dedicated connection.

Returns

IEnumerable<IDataRecord>

Returns the enumeration resulting from query execution.

Remarks

The returned data records can contain additional system columns (TOTAL_RECORDS) when a paged query is being executed. The columns support the framework infrastructure and should not be relied on in custom code.

Exceptions

NotSupportedException

Thrown when the query does not support reader.

GetEnumerableTypedResultAsync<T>(Func<IDataRecord, T>, CommandBehavior, bool, CancellationToken)

Asynchronously gets enumerable collection of strongly typed objects representing the result of this query.

public virtual Task<IEnumerable<T>> GetEnumerableTypedResultAsync<T>(Func<IDataRecord, T> createObjectFunc, CommandBehavior commandBehavior = CommandBehavior.Default, bool newConnection = false, CancellationToken cancellationToken = default)

Parameters

createObjectFunc Func<IDataRecord, T>

Function converting a data record container to the resulting T instance.

commandBehavior CommandBehavior

Command behavior for the underlying data reader.

newConnection bool

If true, the underlying reader will be executed using its own dedicated connection.

cancellationToken CancellationToken

The cancellation instruction.

Returns

Task<IEnumerable<T>>

Returns an enumeration of strongly typed objects.

Type Parameters

T

Exceptions

NotSupportedException

Thrown when the query does not support reader.

GetExecutingQuery(DataQuerySettings)

Gets the query to execute against database

public virtual IDataQuery GetExecutingQuery(DataQuerySettings settings = null)

Parameters

settings DataQuerySettings

Parameters for the query

Returns

IDataQuery

GetExpression()

Gets a query expression representing this object as a value

public virtual string GetExpression()

Returns

string

GetFullQueryText(bool, bool, DataQuerySettings)

Gets the full query text including resolved parameters

public virtual string GetFullQueryText(bool expand = false, bool includeParameters = true, DataQuerySettings settings = null)

Parameters

expand bool

If true, the parameters are expanded

includeParameters bool

If true, parameter declarations are included if parameters are not expanded

settings DataQuerySettings

Query settings

Returns

string

GetIDColumn()

Gets the ID column for this query

protected virtual string GetIDColumn()

Returns

string

GetListResult<T>()

Gets the result as a list of values from the first column that the query returns. Excludes null values from the result.

public virtual IList<T> GetListResult<T>()

Returns

IList<T>

Type Parameters

T

GetNonQueryFromDB()

Executes the query and returns the number of rows affected.

protected virtual int GetNonQueryFromDB()

Returns

int

GetNonQueryFromDBAsync(CancellationToken)

Asynchronously executes the query and returns the number of rows affected.

protected virtual Task<int> GetNonQueryFromDBAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

Returns

Task<int>

GetNonQueryResult()

Executes the query and returns the number of rows affected.

protected virtual int GetNonQueryResult()

Returns

int

Returns 0 if the query has custom data source DataSource available, otherwise returns the number of rows affected by the query execution.

GetNonQueryResultAsync(CancellationToken)

Asynchronously executes the query and returns the number of rows affected.

protected virtual Task<int> GetNonQueryResultAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

The cancellation instruction.

Returns

Task<int>

Returns a task returning either the number of rows affected by the query execution, or 0 if the query has custom data source DataSource available.

GetReader(CommandBehavior, bool)

Executes the query using DB data reader. The SupportsReader flag indicates whether this operation is supported.

protected virtual IDataReader GetReader(CommandBehavior commandBehavior, bool newConnection)

Parameters

commandBehavior CommandBehavior

Command behavior for the reader.

newConnection bool

If true, the reader will be executed using its own dedicated connection.

Returns

IDataReader

Returns the data reader resulting from query execution, or null.

Remarks

The method returns null if ReturnsNoResults indicates the query won't result in any results.

If custom data source DataSource is available, the result is returned from the query execution over this data source.

Exceptions

NotSupportedException

Thrown when the query does not support reader.

See Also

GetReaderAsync(CommandBehavior, bool, CancellationToken)

Asynchronously executes the query using DB data reader. The SupportsReader flag indicates whether this operation is supported.

protected virtual Task<IDataReader> GetReaderAsync(CommandBehavior commandBehavior, bool newConnection, CancellationToken cancellationToken)

Parameters

commandBehavior CommandBehavior

Command behavior for the reader.

newConnection bool

If true, the reader will be executed using its own dedicated connection.

cancellationToken CancellationToken

The cancellation instruction.

Returns

Task<IDataReader>

Returns a task returning either the data reader resulting from query execution, or null.

Remarks

The method returns a task returning null if ReturnsNoResults indicates the query won't result in any results.

If custom data source DataSource is available, the result is returned from the query execution over this data source.

Exceptions

NotSupportedException

Thrown when the query does not support reader.

GetReaderFromDB(CommandBehavior, bool)

Executes the query using DB data reader.

protected virtual IDataReader GetReaderFromDB(CommandBehavior commandBehavior, bool newConnection)

Parameters

commandBehavior CommandBehavior

Command behavior for the reader.

newConnection bool

If true, the reader will be executed using its own dedicated connection.

Returns

IDataReader

Returns the data reader resulting from query execution, or null.

GetReaderFromDBAsync(CommandBehavior, bool, CancellationToken)

Asynchronously executes the query using DB data reader.

protected virtual Task<IDataReader> GetReaderFromDBAsync(CommandBehavior commandBehavior, bool newConnection, CancellationToken cancellationToken)

Parameters

commandBehavior CommandBehavior

Command behavior for the reader.

newConnection bool

If true, the reader will be executed using its own dedicated connection.

cancellationToken CancellationToken

The cancellation instruction.

Returns

Task<IDataReader>

Returns a task returning either the data reader resulting from query execution, or null.

GetReaderFromDataSource()

Executes the current query over data source and returns it's results as an System.Data.IDataReader. The method is effectively a wrapper around GetDataFromDataSource() based on System.Data.DataSet.CreateDataReader().

protected virtual IDataReader GetReaderFromDataSource()

Returns

IDataReader

Returns the data reader based on GetDataFromDataSource(), or null.

Remarks

The method returns null if the underlying call to GetDataFromDataSource() returns null or a System.Data.DataSet with no data tables.

GetReaderFromDataSourceAsync(CancellationToken)

Asynchronously executes the current query over data source and returns it's results as an System.Data.IDataReader. The method is effectively a wrapper around GetReaderFromDataSource().

protected virtual Task<IDataReader> GetReaderFromDataSourceAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

The cancellation instruction.

Returns

Task<IDataReader>

Returns a task returning the data reader based on GetReaderFromDataSource().

Remarks

The method returns a task returning null if the underlying call to GetReaderFromDataSource() returns null.

GetResults(IDataQuery, ref int)

Gets results from executing query

protected virtual DataSet GetResults(IDataQuery query, ref int totalRecords)

Parameters

query IDataQuery

Executing query

totalRecords int

Returns the total records number

Returns

DataSet

GetScalarFromDB()

Executes the query and returns a value from the first column of the first row in the result set returned by the query.

protected virtual object GetScalarFromDB()

Returns

object

GetScalarFromDBAsync(CancellationToken)

Asynchronously executes the query and returns a value from the first column of the first row in the result set returned by the query.

protected virtual Task<object> GetScalarFromDBAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

Returns

Task<object>

GetScalarFromDataSource()

Executes the current query over data source and returns it's results as a value from the first column of the first row. Additional columns or rows are ignored.

protected virtual object GetScalarFromDataSource()

Returns

object

Returns a value based on GetDataFromDataSource(), or null.

Remarks

The method returns null if the underlying call to GetDataFromDataSource() returns null or a System.Data.DataSet with no data tables.

GetScalarFromDataSourceAsync(CancellationToken)

Asynchronously executes the current query over data source and returns it's results as a value from the first column of the first row. Additional columns or rows are ignored.

protected virtual Task<object> GetScalarFromDataSourceAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

The cancellation instruction.

Returns

Task<object>

Returns a task returning a value based on GetDataFromDataSource(), or null.

Remarks

The method returns a task returning null if the underlying call to GetDataFromDataSource() returns null or a System.Data.DataSet with no data tables.

GetScalarResult()

Executes the query and returns a value from the first column of the first row in the result set returned by the query.

protected virtual object GetScalarResult()

Returns

object

Remarks

If custom data source DataSource is available, the result is returned from the query execution over this data source.

GetScalarResultAsync(CancellationToken)

Asynchronously executes the query and returns a value from the first column of the first row in the result set returned by the query.

protected virtual Task<object> GetScalarResultAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

The cancellation instruction.

Returns

Task<object>

Returns a task returning either a value resulting from query execution, or null.

Remarks

If custom data source DataSource is available, the result is returned from the query execution over this data source.

GetScalarResultAsync<T>(T, CancellationToken?)

Asynchronously returns a task returning a value from the first column of the first row in the result set returned by the query cast to given type. Additional columns or rows are ignored.

public virtual Task<T> GetScalarResultAsync<T>(T defaultValue = default, CancellationToken? cancellationToken = null)

Parameters

defaultValue T

Default value if result not found or not capable to convert to output type.

cancellationToken CancellationToken?

The cancellation instruction.

Returns

Task<T>

Type Parameters

T

GetScalarResult<T>(T)

Returns a value from the first column of the first row in the result set returned by the query cast to given type. Additional columns or rows are ignored.

public virtual T GetScalarResult<T>(T defaultValue = default)

Parameters

defaultValue T

Default value if result not found or not capable to convert to output type.

Returns

T

Type Parameters

T

GetSource()

Gets a source for this query

public virtual QuerySource GetSource()

Returns

QuerySource

HasCompatibleSource(IDataQuery)

Returns true if the given query is an external source

public override bool HasCompatibleSource(IDataQuery query)

Parameters

query IDataQuery

Nested query

Returns

bool

HasResults()

Returns true, if the query returns any results

public bool HasResults()

Returns

bool

Intersect(TQuery)

Gets the intersection of this data query with another query

public virtual TQuery Intersect(TQuery query)

Parameters

query TQuery

Query to intersect with

Returns

TQuery

LoadTotalRecordsNonPaged()

Loads the number of total records for an unpaged query

protected void LoadTotalRecordsNonPaged()

LoadTotalRecordsPaged()

Loads the number of total records for a paged query

protected void LoadTotalRecordsPaged()

NewEmptyQuery()

Creates a new empty query

protected virtual TQuery NewEmptyQuery()

Returns

TQuery

OrderByDefault()

Sets the default order by for the query

public virtual TQuery OrderByDefault()

Returns

TQuery

Reset()

Flushes the results but leaves the generated query text unchanged. After the reset, query can be executed again to obtain new data.

public override void Reset()

ResolveColumns(QueryColumnList, bool, bool)

Resolves the columns in the given list

protected void ResolveColumns(QueryColumnList columns, bool includeBinaryData, bool forceResolve = false)

Parameters

columns QueryColumnList

List of columns to resolve

includeBinaryData bool

Include binary columns

forceResolve bool

If true, the resolving is forced (resolves even when not necessary)

Remarks

Merges columns with columns from ClassStructureInfo of type TQuery.

Select<T>(Func<DataRow, T>)

Transforms the current result

public virtual IEnumerable<T> Select<T>(Func<DataRow, T> func)

Parameters

func Func<DataRow, T>

Select function

Returns

IEnumerable<T>

Type Parameters

T

SetClassName(string)

Gets the class name for current query

protected virtual void SetClassName(string value)

Parameters

value string

Source(Action<QuerySource>)

Defines the source of the data (table, view or a nested query)

public virtual TQuery Source(Action<QuerySource> sourceParameters)

Parameters

sourceParameters Action<QuerySource>

Source parameters

Returns

TQuery

ToString(bool)

Returns the string representation of the expression, with possibility of expanding parameters

public override string ToString(bool expand)

Parameters

expand bool

If true, the result is expanded with parameters so it can act as standalone value.

Returns

string

Union(TQuery, bool)

Gets the union of this data query with another query

public virtual TQuery Union(TQuery query, bool unionAll = false)

Parameters

query TQuery

Query to union with

unionAll bool

If true, the union does not eliminate the duplicities (produces UNION ALL)

Returns

TQuery

UnionAll(TQuery)

Gets the union of this data query with another query without eliminating the duplicities

public virtual TQuery UnionAll(TQuery query)

Parameters

query TQuery

Query to union with

Returns

TQuery

WhereAnyColumn(QueryOperator, object)

Matches the given condition on any column with the same type as the given value type.

[Obsolete("Use method Where() instead with custom WhereCondition.")]
[ObsoleteSince(27, 0)]
public virtual TQuery WhereAnyColumn(QueryOperator op, object value)

Parameters

op QueryOperator

Operator

value object

Value

Returns

TQuery

WhereAnyColumnContains(string)

Adds condition to all items that contain given text in any of the string columns. Performs a SQL substring search on the data.

[Obsolete("Use method Where() instead with custom WhereCondition.")]
[ObsoleteSince(27, 0)]
public virtual TQuery WhereAnyColumnContains(string text)

Parameters

text string

Text to search

Returns

TQuery

WithSettings(AbstractQueryObject)

Applies the given parameters to the query

[Obsolete("Use method ApplySettings(AbstractQueryObject parameters) instead.")]
[ObsoleteSince(27, 0)]
public virtual TQuery WithSettings(AbstractQueryObject parameters)

Parameters

parameters AbstractQueryObject

Parameters to use

Returns

TQuery

WithSettings(Action<DataQuerySettings>)

Applies the given parameters to the query

[Obsolete("Use method ApplySettings(Action<DataQuerySettings> parameters) instead.")]
[ObsoleteSince(27, 0)]
public virtual TQuery WithSettings(Action<DataQuerySettings> parameters)

Parameters

parameters Action<DataQuerySettings>

Parameters to use

Returns

TQuery

WithSource(DataQuerySource)

Sets the given source as the source of the data query

public virtual TQuery WithSource(DataQuerySource source)

Parameters

source DataQuerySource

Data query source

Returns

TQuery

WithSource(DataSet)

Sets the given DataSet as the source of the data query

[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(99, 9)]
public virtual TQuery WithSource(DataSet data)

Parameters

data DataSet

Source data

Returns

TQuery

Operators

implicit operator DataSet(DataQueryBase<TQuery>)

Implicit operator for conversion from DataQuery class to DataSet

public static implicit operator DataSet(DataQueryBase<TQuery> query)

Parameters

query DataQueryBase<TQuery>

Query object

Returns

DataSet