DynamicQueryT Properties |
The DynamicQueryT generic type exposes the following members.
Name | Description | |
---|---|---|
Alias |
Gets or sets the alias.
(Inherited from QuerySpec.) | |
CustomFunctionMappingStore |
Gets or sets the optional custom function mapping store. A custom function mapping store takes precedence over the function mapping store
obtained from the Dynamic Query Engine (DQE) used for producing the SQL for the query. If a custom function mapping store is needed for a query,
set this property only on the query object passed to the execution method. No need to set it on inner query objects.
(Inherited from QuerySpec.) | |
IsPrepared |
Gets a value indicating whether this instance is prepared.
(Inherited from QuerySpec.) | |
NestedQueries |
Gets the nested queries.
(Inherited from DynamicQuery.) | |
OnPrepareForExecutionCallBack |
Gets or sets the call back lambda which is called after this query has been prepared for execution. Use this method to tap into the
execution chain to do last-minute query object manipulation / inspection prior to the actual fetch action.
(Inherited from QuerySpec.) | |
RawFromClause |
Gets the last clause on the from clause set list or null if nothing is there. Used with unwrapping tvf calls.
(Inherited from QuerySpec.) | |
ResultsetElementType |
Gets the type of the resultset element.
(Overrides QuerySpecResultsetElementType.) | |
TargetAlias |
Gets the target alias.
(Inherited from QuerySpec.) | |
UseAliasForOuterAliasOnly |
Gets or sets a value indicating whether the 'Alias' value should be used only for the query's alias (true) or for target aliasing as well if
there's no target alias set (false, default). Set to true when the query is converted to a derived table.
(Inherited from QuerySpec.) |
Name | Description | |
---|---|---|
IDynamicQueryProjection |
Gets the prepared projection.
(Inherited from DynamicQuery.) | |
IQuerySpecAlias |
Gets or sets the alias.
(Inherited from QuerySpec.) | |
IQuerySpecAllowDuplicates |
Gets AllowDuplicates (default is true, if Distinct() is specified, this value is false).
(Inherited from QuerySpec.) | |
IQuerySpecCustomFunctionMappingStore |
Gets the optional custom function mapping store. A custom function mapping store takes precedence over the function mapping store
obtained from the Dynamic Query Engine (DQE) used for producing the SQL for the query. If a custom function mapping store is needed for a query,
(Inherited from QuerySpec.) | |
IQuerySpecFromClause |
Gets the from clause, which is the prepared from clause, created from the plain clause.
(Inherited from QuerySpec.) | |
IQuerySpecGroupByClause |
Gets the prepared group by clause.
(Inherited from QuerySpec.) | |
IQuerySpecLimit |
Gets the limit value specified
(Inherited from QuerySpec.) | |
IQuerySpecNestedQueries |
Gets the nested queries defined for this query. By default this is an empty list, and only filled with nested queries if this query is a dynamic query
and it contains one or more nested queries
(Inherited from QuerySpec.) | |
IQuerySpecOffset |
Gets the offset value specified
(Inherited from QuerySpec.) | |
IQuerySpecOrderByClause |
Gets the prepared order by clause.
(Inherited from QuerySpec.) | |
IQuerySpecResultsetElementType |
Gets the type of the resultset element.
(Inherited from QuerySpec.) | |
IQuerySpecResultsetType |
Gets the type of the resultset. For DynamicQuery instances this is List<object>, for DynamicQuery<T> this is List<T>, and for
EntityQuery<T>, this is either an IEntityCollection or IEntityCollection2 created for the type T.
(Inherited from QuerySpec.) | |
IQuerySpecTargetAlias |
Gets the target alias.
(Inherited from QuerySpec.) | |
IQuerySpecUnionedQueries |
Gets the list of unioned queries with this query. Can be null, in which case no query is unioned with this query.
(Inherited from QuerySpec.) | |
IQuerySpecWhereClause |
Gets the prepared where clause.
(Inherited from QuerySpec.) |