Click or drag to resize
DataQueryBase<TQuery> Properties

The DataQueryBase< TQuery> generic type exposes the following members.

Properties
  NameDescription
Public propertyAllowMaterialization
If true, the query allows materialization
Public propertyClassName
Class name
Protected propertyConnectionStringForced
If true, the connection string was set explicitly
Public propertyConnectionStringName
Connection string name
Public propertyCount
Number of total items in the collection
Public propertyCustomQueryText
Custom query text
Public propertyDataSource
Data source that provides the query data. If not set, the query queries the database directly
Public propertyDataSourceName
Gets the unique query source ID
Public propertyDefaultOrderByColumns
Default order by columns used in case if needed, and order by is not specified
Public propertyDefaultSourceExpression
Default source of the query in case source is not defined
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyDisposeUsedObjects
Disposes the objects that were used as parameters for this query
(Inherited from WhereConditionBase<TParent>.)
Public propertyFilterColumns
List of columns used for extra filtering within the query, e.g. "CMS_C, CMS_RN"
(Inherited from DataQuerySettingsBase<TQuery>.)
Protected propertyForceOrderBy
If true, the order by should be forced in the process of execution
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyFullQueryName
Represents a full query name of the query
Public propertyGroupByColumns
List of columns to group by, by default doesn't group, e.g. "NodeLevel, NodeOwner"
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyHasDataSource
Returns true if the query has specific data source
Public propertyHasGroupBy
Returns true if the given query has group by set
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyHavingCondition
Where condition for the group by on the data, e.g. "DocumentName = 'ABC'"
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyHavingIsComplex
Returns true if the given having condition is a complex condition
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyHavingIsEmpty
Returns true if the having condition is empty
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyIncludeBinaryData
If true, the query includes the object binary data. Default is true
Public propertyIsCombinedQuery
If true, this query is combined from several queries. When additional parameters are applied to it, it will be wrapped into a nested query.
Protected propertyIsImmutable
If true, this object instance is immutable, and next subsequent modification starts with a clone of the object.
(Inherited from QueryParametersBase<TParent>.)
Public propertyIsNested
Indicates that this query is part of multi query
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyIsPagedQuery
Returns true if the query has the paging enabled
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyIsSubQuery
If true, the query is a sub-query used in another query
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyMaxRecords
Maximum number of results to return (use for paging together with Offset)
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyName
Object name, empty by default
(Overrides AbstractQueryObject.Name.)
Public propertyNextPageAvailable
Returns true if the next page is available.
Public propertyOffset
Index of the first record to return (use for paging together with MaxRecords)
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyOrderByColumns
List of columns by which the result should be sorted, e.g. "NodeLevel, DocumentName DESC"
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyParameters
Query data parameters
(Inherited from QueryParametersBase<TParent>.)
Public propertyQueryName
Query name
Public propertyQueryText
Query text
Public propertyResult
DataSet with the result
Public propertyReturnsNoResults
Returns true if query doesn't return any results
(Inherited from WhereConditionBase<TParent>.)
Public propertyReturnsSingleColumn
Returns true if the query returns single column
Public propertySelectColumns Obsolete.
List of columns to return, by default returns all columns, e.g. "DocumentName, DocumentID"
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertySelectColumnsList
List of columns to return, by default returns all columns, e.g. "DocumentName, DocumentID"
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertySelectDistinct
If set to true, returns only distinct (different) values.
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertySourceExpression
Source of the query
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertySupportsReader
Returns true if the query supports data reader
Public propertyTables
Collection of the result tables
Public propertyTopNRecords
If set, selects only first top N number of records
(Inherited from DataQuerySettingsBase<TQuery>.)
Public propertyTotalRecords
Gets the number of total records when paging is used. Gets updated once the query executes
Protected propertyWhereBuilder
Where condition builder
(Inherited from WhereConditionBase<TParent>.)
Public propertyWhereCondition
Where condition on the data, e.g. "DocumentName = 'ABC'"
(Inherited from WhereConditionBase<TParent>.)
Public propertyWhereIsComplex
Returns true if the given where condition contains compound conditions, e. g. "A > 1 AND B = 5"
(Inherited from WhereConditionBase<TParent>.)
Public propertyWhereIsEmpty
Returns true if the where condition is empty
(Inherited from WhereConditionBase<TParent>.)
Protected propertyWhereOperator
Operator used for adding where condition. Default is AND
(Inherited from WhereConditionBase<TParent>.)
Top
See Also