| FieldCompareRangePredicate Constructor (IEntityField, String, Boolean, Object) | 
 
            CTor. Creates Field IN (values) clause
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.1.0.0 (5.1.0)
Syntaxpublic FieldCompareRangePredicate(
	IEntityField field,
	string objectAlias,
	bool negate,
	params Object[] values
)
Public Sub New ( 
	field As IEntityField,
	objectAlias As String,
	negate As Boolean,
	ParamArray values As Object()
)
Parameters
- field
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityField
Field used in the comparison expression - 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 or should be
            left empty if no alias is specified (or no relation collection is used). In that case, use another overload. - negate
 - Type: SystemBoolean
Flag to make this expression add NOT to itself - values
 - Type: SystemObject
Value range to set for the IN clause. Specify any range of values.
            If a single array is passed or an ArrayList, this will be converted to a range of values. 
See Also