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
-
objectQueryParametersBase<TQuery>WhereConditionBase<TQuery>DataQuerySettingsBase<TQuery>DataQueryBase<TQuery>
- Implements
-
IDataQuery<TQuery>IDataQuerySettings<TQuery>IWhereCondition<TQuery>IQueryParameters<TQuery>
- Derived
- Inherited Members
- Extension Methods
Constructors
DataQueryBase(string)
Creates a query based on the given query name
protected DataQueryBase(string queryName)
Parameters
queryName
stringFull query name
DataQueryBase(string, string)
Creates a query based on the given query name
protected DataQueryBase(string className, string queryName)
Parameters
className
stringClass name
queryName
stringQuery 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
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
IDataQuerySettingsSource settings
query
IDataQueryTarget query
ApplyParametersTo(IQueryObject)
Applies this query parameters to the target object
public override void ApplyParametersTo(IQueryObject target)
Parameters
target
IQueryObjectTarget 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
IDataQueryQuery to prepare
multiQuery
boolIf 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
AbstractQueryObjectParameters to apply
Returns
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
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
intTop N to apply
query
IDataQueryTarget 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
stringColumn name
Returns
AsIDQuery()
Creates an ID query from the given query
public virtual IDataQuery AsIDQuery()
Returns
AsMaterializedList(string, bool)
Makes a materialized list from the given query
public virtual IDataQuery AsMaterializedList(string columnName = null, bool distinct = false)
Parameters
columnName
stringColumn name to output
distinct
boolIf true, only distinct values are selected
Returns
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
NestedQuerySettingsSettings
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
stringSpecific column to use in case query doesn't return single column yet
forceColumn
boolIf true, the given column is forced to the output
Returns
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
AsValue()
Gets a query expression representing this object as a value
public virtual IQueryExpression AsValue()
Returns
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
boolInclude 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
IQueryObjectTarget 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
TQueryQuery 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
CommandBehaviorCommand behavior for the reader.
newConnection
boolIf 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
CommandBehaviorCommand behavior for the reader.
newConnection
boolIf 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
intPage 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
intBatch 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
QuerySourceSource
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
CommandBehaviorCommand behavior for the underlying reader.
newConnection
boolIf true, the underlying reader will be executed using its own dedicated connection.
cancellationToken
CancellationTokenThe 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
GetCompleteQueryParameters(DataQuerySettings)
Returns query parameter container filled with the complete settings of current query.
public virtual QueryParameters GetCompleteQueryParameters(DataQuerySettings settings = null)
Parameters
settings
DataQuerySettingsQuery settings to use
Returns
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
IDataQueryExecuting query for which the parameters are retrieved
Returns
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
CommandBehaviorCommand behavior for the underlying reader.
newConnection
boolIf 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
CommandBehaviorCommand behavior for the underlying reader.
newConnection
boolIf 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
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
CommandBehaviorCommand behavior for the underlying reader.
newConnection
boolIf 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
CommandBehaviorCommand behavior for the underlying data reader.
newConnection
boolIf true, the underlying reader will be executed using its own dedicated connection.
cancellationToken
CancellationTokenThe 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
DataQuerySettingsParameters for the query
Returns
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
boolIf true, the parameters are expanded
includeParameters
boolIf true, parameter declarations are included if parameters are not expanded
settings
DataQuerySettingsQuery 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
CancellationTokenThe 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
CommandBehaviorCommand behavior for the reader.
newConnection
boolIf 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
CommandBehaviorCommand behavior for the reader.
newConnection
boolIf true, the reader will be executed using its own dedicated connection.
cancellationToken
CancellationTokenThe 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
CommandBehaviorCommand behavior for the reader.
newConnection
boolIf 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
CommandBehaviorCommand behavior for the reader.
newConnection
boolIf true, the reader will be executed using its own dedicated connection.
cancellationToken
CancellationTokenThe 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
CancellationTokenThe 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
IDataQueryExecuting query
totalRecords
intReturns 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
CancellationTokenThe 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
CancellationTokenThe 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
TDefault 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
TDefault 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
HasCompatibleSource(IDataQuery)
Returns true if the given query is an external source
public override bool HasCompatibleSource(IDataQuery query)
Parameters
query
IDataQueryNested 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
TQueryQuery 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
QueryColumnListList of columns to resolve
includeBinaryData
boolInclude binary columns
forceResolve
boolIf 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
boolIf 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
TQueryQuery to union with
unionAll
boolIf 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
TQueryQuery 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
QueryOperatorOperator
value
objectValue
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
stringText 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
AbstractQueryObjectParameters 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
DataQuerySourceData 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
DataSetSource 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