Click or drag to resize

FieldCompareSetPredicate Constructor (IEntityFieldCore, IFieldPersistenceInfo, IEntityFieldCore, IFieldPersistenceInfo, SetOperator, IPredicate, IRelationCollection, String, Int64, ISortExpression, Boolean, IGroupByCollection)

Creates a new FieldCompareSetPredicate instance.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax
public FieldCompareSetPredicate(
	IEntityFieldCore field,
	IFieldPersistenceInfo persistenceInfoField,
	IEntityFieldCore setField,
	IFieldPersistenceInfo persistenceInfoSetField,
	SetOperator operatorToUse,
	IPredicate filter,
	IRelationCollection relations,
	string objectAlias,
	long maxNumberOfItemsToReturn,
	ISortExpression sorter,
	bool negate,
	IGroupByCollection groupByClause
)

Parameters

field
Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityFieldCore
field to compare to the set results. specify null if EXISTS operator is used
persistenceInfoField
Type: SD.LLBLGen.Pro.ORMSupportClasses.IFieldPersistenceInfo
the persistence info for field. Set to null
setField
Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityFieldCore
field to base the set on
persistenceInfoSetField
Type: SD.LLBLGen.Pro.ORMSupportClasses.IFieldPersistenceInfo
the persistence info for SetField. Set to null
operatorToUse
Type: SD.LLBLGen.Pro.ORMSupportClasses.SetOperator
operator to use as operator between field and the set
filter
Type: SD.LLBLGen.Pro.ORMSupportClasses.IPredicate
filter to use in the set query. Can be null
relations
Type: SD.LLBLGen.Pro.ORMSupportClasses.IRelationCollection
relations to use in the setquery. Can be null
objectAlias
Type: System.String
Alias for the object the field belongs to. Used to identify which entity to use when the entity is present multiple times in a relation collection. Alias has to match an alias specified in the relation collection of the query this predicate is part of or should be left empty if no alias is specified (or no relation collection is used in the query this predicate is part of). In that case, use another overload.
maxNumberOfItemsToReturn
Type: System.Int64
the maximum amount of rows to return in the set query.
sorter
Type: SD.LLBLGen.Pro.ORMSupportClasses.ISortExpression
The sort expression to use in the set query
negate
Type: System.Boolean
negate the compare expression
groupByClause
Type: SD.LLBLGen.Pro.ORMSupportClasses.IGroupByCollection
The Group By clause to use in the set query.
Remarks
Adapter specific constructor
See Also