Click or drag to resize
ScalarQueryExpression Properties

The ScalarQueryExpression type exposes the following members.

Properties
  NameDescription
Public propertyDatabaseSpecificCreator
Object which will be used to create valid parameter objects, field names, including prefix/postfix characters, and conversion routines, and field names, including prefix/postfix characters. Uses the strategy pattern so the generic code can work with more than one target database.
Public propertyFilterToUse
Gets / sets filterToUse
Public propertyForceRowLimit
Gets / sets ForceRowLimit. If set to true (default: false), it will force a TOP 1 clause to be emitted into the SQL (or equivalent if the db doesn't support TOP)
Public propertyGroupByClause
Gets / sets groupByClause
Public propertyParameters
The list of parameters created when the ScalarQueryExpression was translated to text usable in a query. Only valid after a succesful call to ToQueryText
Public propertyRelationsToUse
Gets / sets relationsToUse
Public propertySelectField
Gets / sets selectField
Public propertySelectFieldPersistenceInfo
Gets / sets selectFieldPersistenceInfo
Public propertySorterToUse
Gets / sets sorterToUse
Top
Explicit Interface Implementations
  NameDescription
Explicit interface implementationPrivate propertyIExpressionDatabaseSpecificCreator
Object which will be used to create valid parameter objects, field names, including prefix/postfix characters, and conversion routines, and field names, including prefix/postfix characters. Uses the strategy pattern so the generic code can work with more than one target database.
Explicit interface implementationPrivate propertyIExpressionLeftOperand
Gets the left expression operand. Set by the constructor used.
Explicit interface implementationPrivate propertyIExpressionOperator
Gets the operator of the expression. Not valid (ExOp.None) if RightOperand is null. Set by the constructor used.
Explicit interface implementationPrivate propertyIExpressionParameters
The list of parameters created when the Expression was translated to text usable in a query. Only valid after a succesful call to ToQueryText
Explicit interface implementationPrivate propertyIExpressionRightOperand
Gets the right expression operand. Set by the constructor used. Can be null
Top
See Also