EntityPropertyInequality Operator (EntityProperty, Object) | 
 
            Operator overload for the '!=' operator to produce a FieldCompareValue/Null predicate. 
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.8.0.0 (5.8.21.0111)
Syntaxpublic static Predicate operator !=(
	EntityProperty field,
	Object value
)
Public Shared Operator <> ( 
	field As EntityProperty,
	value As Object
) As Predicate
Parameters
- field
 - Type: SD.LLBLGen.Pro.ORMSupportClassesEntityProperty
Field to compare - value
 - Type: SystemObject
the value to compare with. If value is null, a FieldCompareNullPredicate will be created instead. 
Return Value
Type: 
PredicateA FieldCompareNullPredicate or FieldCompareValuePredicate with the operator ComparisonOperator.NotEqual
See Also