The IMultiDocumentQuery type exposes the following members.
Back to Top
Back to Top
Back to Top
Methods
Name | Description | |
---|---|---|
ApplyParametersTo |
Applies this where condition to the target object
(Inherited from IQueryParameters.) | |
ApplySettings(AbstractQueryObject) |
Applies the given settings to the query
(Inherited from IDataQuery.) | |
ApplySettings(Action DataQuerySettings ) |
Applies the given settings to the query
(Inherited from IDataQuery.) | |
AsIDQuery |
Creates an ID query from the given query
(Inherited from IDataQuery.) | |
AsNested TResult |
Creates a nested query from the given query
(Inherited from IDataQuery.) | |
AsSingleColumn |
Creates a single column query from the given query
(Inherited from 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.
(Inherited from IDataQuery.) | |
CloneObject |
Creates the clone of the object.
(Inherited from IQueryObject.) | |
Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) | |
EnsureParameters |
Ensures data parameters for the given query
(Inherited from IQueryParameters.) | |
Execute |
Executes the current query and returns it's results as a DataSet
(Inherited from IDataQuery.) | |
ExecuteReader |
Executes the current query and returns it's results as a data reader
(Inherited from IDataQuery.) | |
Expand |
Expands the expression by replacing parameters with their values
(Inherited from IQueryParameters.) | |
ForEachRow |
Executes the given action for each item (DataRow) in the result. Processes the items in batches of the given size.
(Inherited from IDataQuery.) | |
GetCompleteSettings |
Gets the complete parameters for the query execution
(Inherited from IDataQuery.) | |
GetListResult T |
Gets the result as a list of values from the first column that the query returns. Excludes null values from the result.
(Inherited from IDataQuery.) | |
GetScalarResult T |
Gets the scalar
(Inherited from IDataQuery.) | |
IncludeDataParameters |
Adds the data parameters to the current query parameters
(Inherited from IQueryParameters.) | |
ReturnNoResults |
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 IWhereCondition.) | |
Select T |
Transforms the current result
(Inherited from IDataQuery.) | |
ToString |
Returns the string representation of the expression, with possibility of expanding parameters
(Inherited from IQueryParameters.) |
Extension Methods
Name | Description | |
---|---|---|
FakeExecution |
Fakes the execution of a query
(Defined by UnitTestExtensions.) |
Properties
Name | Description | |
---|---|---|
ClassName |
Class name
(Inherited from IDataQuery.) | |
CustomQueryText |
Custom query text
(Inherited from IDataQuery.) | |
DataSource |
Data source that provides the query data. If not set, the query queries the database directly
(Inherited from IDataQuery.) | |
DataSourceName |
Gets the unique query source ID
(Inherited from IDataQuery.) | |
DefaultOrderByColumns |
Default order by columns used in case if needed, and order by is not specified
(Inherited from IDataQuery.) | |
DefaultSourceExpression |
Default source of the query in case source is not defined
(Inherited from IDataQuerySettings.) | |
GroupByColumns |
List of columns to group by, by default doesn't group, e.g. "NodeLevel, NodeOwner"
(Inherited from IDataQuerySettings.) | |
HasDataSource |
Returns true if the query has specific data source
(Inherited from IDataQuery.) | |
HavingCondition |
Where condition for the group by on the data, e.g. "DocumentName = 'ABC'"
(Inherited from IDataQuerySettings.) | |
IncludeBinaryData |
If true, the query includes the object binary data. Default is false
(Inherited from IDataQuery.) | |
IsNested |
Indicates that this query is part of multi query
(Inherited from IQueryObject.) | |
IsSubQuery |
If true, the query is a sub-query used in another query
(Inherited from IDataQuery.) | |
MaxRecords |
Maximum number of results to return (use for paging together with Offset)
(Inherited from IDataQuerySettings.) | |
Name |
Object name, empty by default
(Inherited from IQueryObject.) | |
ObjectType |
Returns the object type of the objects stored within the collection.
(Inherited from IObjectQuery.) | |
Offset |
Index of the first record to return (use for paging together with MaxRecords)
(Inherited from IDataQuerySettings.) | |
OrderByColumns |
List of columns by which the result should be sorted, e.g. "NodeLevel, DocumentName DESC"
(Inherited from IDataQuerySettings.) | |
OrderByResultColumns |
List of columns for the result order by. If not specified, the result is ordered by sources and global order by.
(Inherited from IMultiQuery.) | |
Parameters |
Query data parameters
(Inherited from IQueryParameters.) | |
Properties |
Document query parameters.
(Inherited from IDocumentQuery.) | |
QueryName |
Query name
(Inherited from IDataQuery.) | |
QueryText |
Query text
(Inherited from IDataQuery.) | |
Result |
DataSet with the result
(Inherited from IDataQuery.) | |
SelectColumns |
List of columns to return, by default returns all columns, e.g. "DocumentName, DocumentID"
(Inherited from IDataQuerySettings.) | |
SelectDistinct |
If set to true, returns only distinct (different) values.
(Inherited from IDataQuerySettings.) | |
SelectResultColumns |
List of columns to use for results, by default returns all columns defined in the inner queries. Example: "DocumentName, DocumentID"
(Inherited from IMultiQuery.) | |
SourceExpression |
Source of the query
(Inherited from IDataQuerySettings.) | |
SupportsReader |
Returns true if the query supports data reader
(Inherited from IDataQuery.) | |
Tables |
Collection of the result tables
(Inherited from IDataQuery.) | |
TopNRecords |
If set, selects only first top N number of records
(Inherited from IDataQuerySettings.) | |
TotalRecords |
Gets the number of total records when paging is used. Gets updated once the query executes
(Inherited from IDataQuery.) | |
UseTypeColumns |
If true (default), the query uses type columns for the output, otherwise it uses only global columns
(Inherited from IMultiQuery.) | |
WhereCondition |
Where condition on the data, e.g. "DocumentName = 'ABC'"
(Inherited from IWhereCondition.) | |
WhereIsComplex |
Returns true if the given where condition is a complex where condition
(Inherited from IWhereCondition.) |
See Also