FieldCompareSetPredicate Constructor (IEntityField, IEntityField, SetOperator, IPredicate, IRelationCollection, String, Int64, ISortExpression) |
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public FieldCompareSetPredicate(
IEntityField field,
IEntityField setField,
SetOperator operatorToUse,
IPredicate filter,
IRelationCollection relations,
string objectAlias,
long maxNumberOfItemsToReturn,
ISortExpression sorter
)
Public Sub New (
field As IEntityField,
setField As IEntityField,
operatorToUse As SetOperator,
filter As IPredicate,
relations As IRelationCollection,
objectAlias As String,
maxNumberOfItemsToReturn As Long,
sorter As ISortExpression
)
Parameters
- field
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityField
field to compare to the set results. specify null if EXISTS operator is used - setField
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityField
field to base the set on - operatorToUse
- Type: SD.LLBLGen.Pro.ORMSupportClassesSetOperator
operator to use as operator between field and the set - filter
- Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
filter to use in the set query. Can be null - relations
- Type: SD.LLBLGen.Pro.ORMSupportClassesIRelationCollection
relations to use in the setquery. Can be null - objectAlias
- Type: SystemString
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: SystemInt64
the maximum amount of rows to return in the set query. - sorter
- Type: SD.LLBLGen.Pro.ORMSupportClassesISortExpression
The sort expression to use in the set query
Remarks SelfServicing specific constructor
See Also