Click or drag to resize
MultiQueryBaseTQuery, TInnerQuery Methods

The MultiQueryBaseTQuery, TInnerQuery generic type exposes the following members.

Methods
  NameDescription
Public methodAddColumn(String)
Adds the additional column to the query
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodAddColumn(IQueryColumn)
Adds the additional column to the query
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodAddColumns(IEnumerableString)
Adds the additional columns to the query
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodAddColumns(String)
Adds the additional columns to the query
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodAddColumns(IQueryColumn)
Adds the additional columns to the query
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodAddFilterColumn
Adds the additional filter column to the query
(Inherited from DataQuerySettingsBaseTQuery.)
Protected methodAddHavingInternal
Adds the given having condition
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodAddResultColumn(String)
Adds the additional column to the query
Public methodAddResultColumn(IQueryColumn)
Adds the additional column to the query
Public methodAddResultColumns(IEnumerableString)
Adds the additional columns to the query
Public methodAddResultColumns(String)
Adds the additional columns to the query
Public methodAddResultColumns(IQueryColumn)
Adds the additional columns to the query
Protected methodAddWhereCondition
Adds the given where condition to the final where condition
(Inherited from WhereConditionBaseTParent.)
Protected methodAddWhereConditionInternal
Adds the given where condition
(Inherited from WhereConditionBaseTParent.)
Protected methodAllowTopNDistribution
Returns true if distribution of TOP N to inner queries is allowed. Defaults to false. Distribution of TOP N to inner queries helps performance mainly in case the inner query is complex and includes nesting levels, for simple queries it is better not to allow the distribution.
(Inherited from DataQueryBaseTQuery.)
Public methodAnd
Changes the where operator to AND for subsequent where conditions. Use in combination of methods Where...
(Inherited from WhereConditionBaseTParent.)
Public methodAnd(IWhereCondition)
Adds the given where condition with the AND operator
(Inherited from WhereConditionBaseTParent.)
Public methodAnd(ActionWhereCondition)
Adds the given where condition with the AND operator. Creates a new where condition object and runs the setup actions on it.
(Inherited from WhereConditionBaseTParent.)
Protected methodAnySettingsDefined
Returns true if the object has any settings defined that influence the resulting query
(Inherited from DataQuerySettingsBaseTQuery.)
Protected methodApplyPagingTopN
Applies top N based on paging settings to the inner query to select only necessary data
(Inherited from DataQueryBaseTQuery.)
Public methodApplyParametersTo
Applies this query parameters to the target object
(Inherited from DataQueryBaseTQuery.)
Protected methodApplyProperties
Applies main query properties to the given query to ensure synchronized state before execution
(Inherited from DataQueryBaseTQuery.)
Public methodApplySettings(AbstractQueryObject)
Applies the given settings to the query
(Inherited from DataQueryBaseTQuery.)
Public methodApplySettings(ActionDataQuerySettings)
Applies the given settings to the query
(Inherited from DataQueryBaseTQuery.)
Protected methodApplyTopN
Applies TOP N settings to the given query if it is more restrictive than the current query settings.
(Inherited from DataQueryBaseTQuery.)
Public methodAsTNewType
Changes the type of the query to another type
(Inherited from DataQueryBaseTQuery.)
Public methodAsColumn
Converts the query to the query column using this query as nested
(Inherited from DataQueryBaseTQuery.)
Public methodAsIDQuery
Creates an ID query from the given query
(Inherited from DataQueryBaseTQuery.)
Public methodAsMaterializedList
Makes a materialized list from the given query
(Inherited from DataQueryBaseTQuery.)
Public methodAsNestedTResult
Creates a nested query from the given query
(Inherited from DataQueryBaseTQuery.)
Public methodAsSingleColumn
Creates a single column query from the given query
(Overrides DataQueryBaseTQueryAsSingleColumn(String, Boolean).)
Public methodAsSubQuery
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.
(Overrides DataQueryBaseTQueryAsSubQuery.)
Public methodAsValue
Gets a query expression representing this object as a value
(Inherited from DataQueryBaseTQuery.)
Public methodBinaryData
Sets whether the binary data should be included to the result
(Inherited from DataQueryBaseTQuery.)
Protected methodBuildMultiQueryFrom
Builds a multi-query from the given list of queries
Public methodCallOnDispose
Adds the given action to the list of actions called when the handler object is disposed
(Inherited from DisposableObject.)
Public methodChanged
Marks the object as changed
(Inherited from DataQueryBaseTQuery.)
Protected methodCheckReturnsNoResults
Checks if where condition results in no data
(Inherited from WhereConditionBaseTParent.)
Public methodClone
Creates the clone of the object.
(Inherited from QueryParametersBaseTParent.)
Public methodCloneObject
Creates the clone of the object.
(Inherited from QueryParametersBaseTParent.)
Public methodColumn(String)
Sets the column to select
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodColumn(IQueryColumn)
Sets the column to select
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodColumns(IEnumerableString)
Sets the columns to select
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodColumns(String)
Sets the columns to select
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodColumns(IQueryColumn)
Sets the columns to select
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodCopyPropertiesTo
Copies the properties to the target query.
(Overrides DataQueryBaseTQueryCopyPropertiesTo(IQueryObject).)
Protected methodCreateQuery
Creates query for the given type
Protected methodDataSourceChanged
Marks the object as changed when data source changes
(Inherited from DataQueryBaseTQuery.)
Public methodDispose
Make sure the objects get disposed
(Inherited from DisposableObject.)
Public methodDistinct
Sets the query to use distinct selection over the given columns
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodEnsureParameters
Ensures data parameters for the given query
(Inherited from QueryParametersBaseTParent.)
Protected methodEnsureQueries(IEnumerableString)
Ensures the queries for the given types
Protected methodEnsureQueries(String)
Ensures the queries for the given types
Protected methodEnsureQuery
Ensures the query with the given type
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from WhereConditionBaseTParent.)
Public methodExcept
Gets the intersection of this data query with another query
(Inherited from DataQueryBaseTQuery.)
Public methodExecute
Executes the current query and returns it's results as a DataSet
(Inherited from DataQueryBaseTQuery.)
Public methodExecuteReader
Executes the current query and returns it's results as a data reader
(Inherited from DataQueryBaseTQuery.)
Public methodExpand
Expands the expression by replacing parameters with their values
(Inherited from QueryParametersBaseTParent.)
Public methodExpandColumns
Expands the columns within this query
(Inherited from DataQueryBaseTQuery.)
Public methodForEachPage
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.
(Inherited from DataQueryBaseTQuery.)
Public methodForEachRow
Executes the given action for each item (DataRow) in the result. Processes the items in batches of the given size.
(Inherited from DataQueryBaseTQuery.)
Public methodFrom
Defines the source of the data (table, view or a nested query)
(Inherited from DataQueryBaseTQuery.)
Protected methodGetAvailableColumns
Gets the list of all available columns for this query
(Overrides DataQueryBaseTQueryGetAvailableColumns.)
Protected methodGetBinaryColumns
Gets the binary columns for this query
(Inherited from DataQueryBaseTQuery.)
Protected methodGetClassName
Gets the class name for current query
(Inherited from DataQueryBaseTQuery.)
Protected methodGetClassStructureInfo
Gets the class structure info for this query
(Inherited from DataQueryBaseTQuery.)
Public methodGetCompleteQueryParameters
Returns query parameter container filled with the complete settings of current query.
(Inherited from DataQueryBaseTQuery.)
Public methodGetCompleteSettings
Gets the complete parameters for the query execution
(Overrides DataQueryBaseTQueryGetCompleteSettings(IDataQuery).)
Protected methodGetData
Executes the query. Sets the total records number during execution.
(Inherited from DataQueryBaseTQuery.)
Protected methodGetDataFromDataSource
Executes the current over data source and returns it's results as a DataSet
(Inherited from DataQueryBaseTQuery.)
Protected methodGetDataFromDB
Executes the query
(Inherited from DataQueryBaseTQuery.)
Protected methodGetDataSourceName
Gets data source identifier that represents the location from which the data are obtained.
(Inherited from DataQueryBaseTQuery.)
Protected methodGetDefaultOrderBy
Gets the default order by columns
(Inherited from DataQueryBaseTQuery.)
Protected methodGetDefaultSingleColumn
Gets the default single column for the query
(Overrides DataQueryBaseTQueryGetDefaultSingleColumn.)
Protected methodGetDefaultSource
Gets the default source
(Overrides DataQueryBaseTQueryGetDefaultSource.)
Public methodGetExecutingQuery
Gets the query to execute against database
(Overrides DataQueryBaseTQueryGetExecutingQuery(DataQuerySettings).)
Public methodGetExpression
Gets a query expression representing this object as a value
(Inherited from DataQueryBaseTQuery.)
Public methodGetExpressions
Gets the query expressions
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodGetFullQueryText
Gets the full query text including resolved parameters
(Inherited from DataQueryBaseTQuery.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from WhereConditionBaseTParent.)
Protected methodGetIDColumn
Gets the ID column for this query
(Inherited from DataQueryBaseTQuery.)
Public methodGetListResultT
Gets the result as a list of values from the first column that the query returns. Excludes null values from the result.
(Inherited from DataQueryBaseTQuery.)
Protected methodGetMultiQuery
Gets a multi-query for execution
Protected methodGetQueriesForMultiQuery
Gets the list of queries for multi query
Protected methodGetReaderFromDB
Executes the query
(Inherited from DataQueryBaseTQuery.)
Protected methodGetResults
Gets results from executing query
(Inherited from DataQueryBaseTQuery.)
Public methodGetScalarResultT
Gets the scalar
(Inherited from DataQueryBaseTQuery.)
Protected methodGetSingleInnerQuery
Attempts to get a single query if multi-query is defined only by a single query
Protected methodGetSingleQuery
Attempts to get a single query for the whole result based on the current state of the query object
Public methodGetSource
Gets a source for this query
(Inherited from DataQueryBaseTQuery.)
Public methodGetTypedQuery
Returns specifically typed instance of current Query object to allow user to compose Query in fluent syntax. If current Query is immutable then its clone is returned.
(Inherited from QueryParametersBaseTParent.)
Protected methodGetTypesWhereCondition
Returns the where condition which filters the default query data for specific types
Protected methodGetWhere(String, QueryOperator, Object)
Gets the where condition for the given column
(Inherited from WhereConditionBaseTParent.)
Protected methodGetWhere(IQueryObjectWithValue, QueryOperator, Object)
Gets the where condition for the given column
(Inherited from WhereConditionBaseTParent.)
Public methodGroupBy
Specifies the columns to group by
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodHasCompatibleSource
Returns true if the given query is an external source
(Inherited from DataQueryBaseTQuery.)
Public methodHasResults
Returns true, if the query returns any results
(Inherited from DataQueryBaseTQuery.)
Public methodHaving(IWhereCondition)
Adds the given having conditions to the query.
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodHaving(ActionWhereCondition)
Adds the given where condition to the query. Creates a new where condition object and runs the setup actions on it.
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodHaving(String, Boolean)
Specifies the having condition
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodImmutable
Makes this object instance is immutable, and next subsequent modification starts with a clone of the object.
(Inherited from QueryParametersBaseTParent.)
Public methodIncludeDataParameters
Adds the data parameters to the current query parameters
(Inherited from QueryParametersBaseTParent.)
Public methodIntersect
Gets the intersection of this data query with another query
(Inherited from DataQueryBaseTQuery.)
Protected methodLoadTotalRecordsNonPaged
Loads the number of total records for an unpaged query
(Inherited from DataQueryBaseTQuery.)
Protected methodLoadTotalRecordsPaged
Loads the number of total records for a paged query
(Inherited from DataQueryBaseTQuery.)
Public methodLock
Locks the event on the given lock object. The context stays locked until the handler is disposed.
(Inherited from DisposableObject.)
Protected methodNewDataSet
Creates a new DataSet for the query results
Protected methodNewEmptyQuery
Creates a new empty query
(Inherited from DataQueryBaseTQuery.)
Public methodNewGroupBy
Clears the current group by, reverting the source of data to the original. Note, that this method also resets the existing having condition which is closely bound to the group by.
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodNewHaving
Clears the current having condition
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodNewWhere
Clears the current where condition
(Inherited from WhereConditionBaseTParent.)
Public methodNextPage
Adjusts the query to a next page, using the current page size. Use in combination with PagedBy and NextPageAvailable to iterate over the data in batches.
(Inherited from DataQuerySettingsBaseTQuery.)
Protected methodNoColumns
Sets the query to return no columns at all
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodNoDefaultColumns
Sets the query to return no columns at all
Public methodNoResults
Sets the where condition to exclude all data from result
(Inherited from WhereConditionBaseTParent.)
Public methodNotPaged
Sets up the query to become not paged query and output all results at once.
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodOr
Changes the where operator to OR for next where conditions. Use in combination of methods Where...
(Inherited from WhereConditionBaseTParent.)
Public methodOr(IWhereCondition)
Adds the given where condition with the OR operator
(Inherited from WhereConditionBaseTParent.)
Public methodOr(ActionWhereCondition)
Adds the given where condition with the OR operator. Creates a new where condition object and runs the setup actions on it.
(Inherited from WhereConditionBaseTParent.)
Public methodOrderBy(String)
Adds the columns to the order by query
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodOrderBy(OrderDirection, String)
Adds the columns to the order by query
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodOrderByAscending
Adds the columns to the order by query to order by the given columns in ascending order
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodOrderByDefault
Sets the default order by for the query
(Inherited from DataQueryBaseTQuery.)
Public methodOrderByDescending
Adds the columns to the order by query to order by the given columns in descending order
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodPage
Specifies the page to select with given page index and page size. Page number is indexed from 0 (first page)
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodPagedBy
Sets up the query as a paged query with the given page size. Resets the page index to first page. Use in combination with NextPageAvailable and NextPage to iterate over the data in batches.
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodReplaceColumn
Replaces the selected column with a new name
(Inherited from DataQuerySettingsBaseTQuery.)
Protected methodReplaceOrderByColumn
Replaces the selected column with a new name
(Inherited from DataQuerySettingsBaseTQuery.)
Protected methodReplaceSelectedColumn
Replaces the selected column with a new name
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodReset
Flushes the results but leaves the generated query text unchanged. After the reset, query can be executed again to obtain new data.
(Inherited from DataQueryBaseTQuery.)
Protected methodResetWhereOperator
Resets the where operator to the default value
(Inherited from WhereConditionBaseTParent.)
Protected methodResolveColumns
Resolves the columns in the given list
(Inherited from DataQueryBaseTQuery.)
Protected methodResolveType
Resolves the given type into corresponding types
Public methodResultColumn(String)
Sets the column to select
Public methodResultColumn(IQueryColumn)
Sets the column to select
Public methodResultColumns(IEnumerableString)
Sets the columns to select
Public methodResultColumns(String)
Sets the columns to select
Public methodResultColumns(IQueryColumn)
Sets the columns to select
Public methodResultOrderBy(String)
Adds the columns to the order by query
Public methodResultOrderBy(OrderDirection, String)
Adds the columns to the order by query
Public methodResultOrderByAscending
Adds the columns to the order by query to order by the given columns in ascending order
Public methodResultOrderByDescending
Adds the columns to the order by query to order by the given columns in descending order
Public methodReturnNoResults
Sets the query to return no results. This action is irreversible, once the query is set to return no results it cannot be changed. This method is used by data engine to forbid access to data that are not allowed to be accessed (e.g. license limitations), without notifying the process about the fact.
(Inherited from WhereConditionBaseTParent.)
Public methodSelectT
Transforms the current result
(Inherited from DataQueryBaseTQuery.)
Protected methodSetClassName
Sets class name for current query
(Overrides DataQueryBaseTQuerySetClassName(String).)
Public methodSnapshot
Creates an immutable snapshot of the current query as a base for further evaluation. Doesn't modify the original query in any way.
(Inherited from QueryParametersBaseTParent.)
Public methodSource
Defines the source of the data (table, view or a nested query)
(Inherited from DataQueryBaseTQuery.)
Public methodTake
Identity method to make the query expression more readable. Use before the Columns or Page method. Doesn't provide any functionality.
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodThen
Identity method to make the query expression more readable. Use before the OrderBy method. Doesn't provide any functionality.
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodTopN
Selects only first top N number of records
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodToString
Returns the string representation of the expression
(Inherited from QueryParametersBaseTParent.)
Public methodToString(Boolean)
Returns the string representation of the expression, with possibility of expanding parameters
(Inherited from DataQueryBaseTQuery.)
Public methodType
Includes given type with optional parameters. When additional parameters are specified, the query always executes using sub-queries for individual types. If only type is specified, the query allows usage of the default query and additional data from sub-queries may not be included.
Public methodTypes
Includes the given types to the resulting query
Public methodUnion
Gets the union of this data query with another query
(Inherited from DataQueryBaseTQuery.)
Public methodUnionAll
Gets the union of this data query with another query without eliminating the duplicities
(Inherited from DataQueryBaseTQuery.)
Public methodUsing
Adds the given object to the list of the allocated objects to dispose
(Inherited from DisposableObject.)
Public methodWhere(IWhereCondition)
Adds the given where conditions to the query
(Inherited from WhereConditionBaseTParent.)
Public methodWhere(ActionWhereCondition)
Adds the given where condition to the query. Creates a new where condition object and runs the setup actions on it.
(Inherited from WhereConditionBaseTParent.)
Public methodWhere(String, QueryDataParameters)
Adds the given where condition to the query
(Inherited from WhereConditionBaseTParent.)
Public methodWhere(String, QueryUnaryOperator)
Adds the given where condition to the query. Matches the column value with an unary operator.
(Inherited from WhereConditionBaseTParent.)
Public methodWhere(IQueryObjectWithValue, QueryUnaryOperator)
Adds the given where condition to the query. Matches the column value with an unary operator.
(Inherited from WhereConditionBaseTParent.)
Public methodWhere(String, QueryOperator, Object)
Adds the given where condition to the query. Matches the column to a given value.
(Inherited from WhereConditionBaseTParent.)
Public methodWhere(IQueryObjectWithValue, QueryOperator, Object)
Adds the given where condition to the query. Matches the column to a given value.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereAnyColumn
Matches the given condition on any column with the same type as the given value type.
(Inherited from DataQueryBaseTQuery.)
Public methodWhereAnyColumnContains
Adds condition to all items that contain given text in any of the string columns. Performs a SQL substring search on the data.
(Inherited from DataQueryBaseTQuery.)
Public methodWhereContains(String, String)
Adds the condition for a string column to contain some substring
(Inherited from WhereConditionBaseTParent.)
Public methodWhereContains(IQueryObjectWithValue, String)
Adds the condition for a string column to contain some substring
(Inherited from WhereConditionBaseTParent.)
Public methodWhereEmpty
Adds the where condition for a null or empty column value
(Inherited from WhereConditionBaseTParent.)
Public methodWhereEndsWith(String, String)
Adds the condition for a string column to end with some prefix
(Inherited from WhereConditionBaseTParent.)
Public methodWhereEndsWith(IQueryObjectWithValue, String)
Adds the condition for a string expression to end with some prefix
(Inherited from WhereConditionBaseTParent.)
Public methodWhereEquals(String, Object)
Adds the given where condition to the query. Matches the column to a given value.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereEquals(IQueryObjectWithValue, Object)
Adds the given where condition to the query. Matches the left side to the given right side.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereEqualsOrNull
Adds the given where condition to the query. Matches the column to a given value or null value.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereExists(IDataQuery)
Adds where condition with EXISTS and the nested query "EXISTS (...)"
(Inherited from WhereConditionBaseTParent.)
Protected methodWhereExists(IDataQuery, Boolean)
Adds where condition with EXISTS and the nested query "EXISTS (...)"
(Inherited from WhereConditionBaseTParent.)
Public methodWhereFalse(String)
Adds the where condition for a false column value (boolean column equals false).
(Inherited from WhereConditionBaseTParent.)
Public methodWhereFalse(IQueryObjectWithValue)
Adds the where condition for a false expression value (boolean expression equals false).
(Inherited from WhereConditionBaseTParent.)
Public methodWhereGreaterOrEquals(String, Object)
Adds the given where condition to the query. Matches the left side which is greater or equal than the right side.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereGreaterOrEquals(IQueryObjectWithValue, Object)
Adds the given where condition to the query. Matches the left side which is greater or equal than the right side.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereGreaterThan(String, Object)
Adds the given where condition to the query. Matches the left side which is greater than the right side.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereGreaterThan(IQueryObjectWithValue, Object)
Adds the given where condition to the query. Matches the left side which is greater than the right side.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereID
Adds the where condition to match the ID to the query. In case the column name is not provided or unknown, does not generate where condition. If given ID is invalid, adds the condition to match NULL.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereIn(String, IDataQuery)
Adds where condition to the nested query, e.g. "columnName IN (...)"
(Inherited from WhereConditionBaseTParent.)
Public methodWhereIn(String, ICollectionInt32)
Adds where condition to the list of values, e.g. "columnName IN (...)"
(Inherited from WhereConditionBaseTParent.)
Protected methodWhereIn(String, IDataQuery, Boolean)
Adds where condition to the list of values, e.g. "columnName IN (...)". Supported generic type is int, long, string or guid ONLY!
(Inherited from WhereConditionBaseTParent.)
Protected methodWhereIn(String, ICollectionInt32, Boolean)
Adds where condition to the list of values, e.g. "columnName IN (...)"
(Inherited from WhereConditionBaseTParent.)
Public methodWhereLessOrEquals(String, Object)
Adds the given where condition to the query. Matches the left side which is less or equal than the right side.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereLessOrEquals(IQueryObjectWithValue, Object)
Adds the given where condition to the query. Matches the left side which is less or equal than the right side.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereLessThan(String, Object)
Adds the given where condition to the query. Matches the left side which is less than the right side.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereLessThan(IQueryObjectWithValue, Object)
Adds the given where condition to the query. Matches the left side which is less than the right side.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereLike(String, String)
Adds the given where condition to the query. Matches the column to a given value using LIKE operator.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereLike(IQueryObjectWithValue, Object)
Adds the given where condition to the query. Matches the left side and right side using LIKE operator.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNot
Adds the negation of the given where condition
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotContains(String, String)
Adds the condition for a string column not to contain some substring
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotContains(IQueryObjectWithValue, String)
Adds the condition for a string column not to contain some substring
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotEmpty
Adds the where condition for a non empty column value
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotEndsWith(String, String)
Adds the condition for a string column not to end with some prefix
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotEndsWith(IQueryObjectWithValue, String)
Adds the condition for a string column not to end with some prefix
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotEquals(String, Object)
Adds the given where condition to the query. Matches the column which is not equal to a given value.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotEquals(IQueryObjectWithValue, Object)
Adds the given where condition to the query. Matches the left side which is not equal to the right side.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotExists
Adds where condition with NOT EXISTS and the nested query "NOT EXISTS (...)"
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotIn(String, IDataQuery)
Adds where condition to the nested query, e.g. "columnName NOT IN (...)"
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotIn(String, ICollectionInt32)
Adds where condition to the list of values, e.g. "columnName NOT IN (...)"
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotLike(String, String)
Adds the given where condition to the query. Matches the column to a given value using NOT LIKE operator.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotLike(IQueryObjectWithValue, Object)
Adds the given where condition to the query. Matches the left side and right side using NOT LIKE operator.
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotNull(String)
Adds the where condition for a not null column value
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotNull(IQueryObjectWithValue)
Adds the where condition for a not null expression value
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotStartsWith(String, String)
Adds the condition for a string column not to start with some prefix
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNotStartsWith(IQueryObjectWithValue, String)
Adds the condition for a string column not to start with some prefix
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNull(String)
Adds the where condition for a null column value
(Inherited from WhereConditionBaseTParent.)
Public methodWhereNull(IQueryObjectWithValue)
Adds the where condition for a null expression value
(Inherited from WhereConditionBaseTParent.)
Public methodWhereStartsWith(String, String)
Adds the condition for a string column to start with some prefix
(Inherited from WhereConditionBaseTParent.)
Public methodWhereStartsWith(IQueryObjectWithValue, String)
Adds the condition for a string column to start with some prefix
(Inherited from WhereConditionBaseTParent.)
Public methodWhereTrue(String)
Adds the where condition for a true column value (boolean column equals true).
(Inherited from WhereConditionBaseTParent.)
Public methodWhereTrue(IQueryObjectWithValue)
Adds the where condition for a true expression value (boolean expression equals true).
(Inherited from WhereConditionBaseTParent.)
Public methodWithComment
Adds the comment to the given query
(Inherited from DataQuerySettingsBaseTQuery.)
Public methodWithSettings(AbstractQueryObject)
Applies the given parameters to the query
(Inherited from DataQueryBaseTQuery.)
Public methodWithSettings(ActionDataQuerySettings)
Applies the given parameters to the query
(Inherited from DataQueryBaseTQuery.)
Public methodWithSource(DataSet)
Sets the given DataSet as the source of the data query
(Inherited from DataQueryBaseTQuery.)
Public methodWithSource(DataQuerySource)
Sets the given source as the source of the data query
(Overrides DataQueryBaseTQueryWithSource(DataQuerySource).)
Top
Extension Methods
See Also