Click or drag to resize
IQuerySpec Interface
Simple interface for accessing a QuerySpec object's internal elements for further manipulation (in case of objects) or analysis.

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public interface IQuerySpec

The IQuerySpec type exposes the following members.

Properties
  NameDescription
Public propertyAlias
Gets or sets the alias.
Public propertyAllowDuplicates
Gets AllowDuplicates (default is true, if Distinct() is specified, this value is false).
Public propertyCustomFunctionMappingStore
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,
Public propertyFromClause
Gets the from clause, which is the prepared from clause, created from the plain clause.
Public propertyGroupByClause
Gets the prepared group by clause.
Public propertyLimit
Gets the limit value specified
Public propertyNestedQueries
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
Public propertyOffset
Gets the offset value specified
Public propertyOrderByClause
Gets the prepared order by clause.
Public propertyResultsetElementType
Gets the type of the resultset element.
Public propertyResultsetType
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.
Public propertyTargetAlias
Gets the target alias.
Public propertyWhereClause
Gets the prepared where clause.
Top
Remarks
Be sure to access the elements after the query has been prepared for execution.
See Also