Click or drag to resize
PredicateExtensionMethodsCaseInsensitive Method (FieldLikePredicate)
Makes the predicate a case-insensitive comparison by using the UPPER() function on the value to compare to the pattern specified in the predicate. Make sure the predicate's pattern is specified with uppercase characters. Only useful on case-sensitive collations.

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static FieldLikePredicate CaseInsensitive(
	this FieldLikePredicate predicate
)

Parameters

predicate
Type: SD.LLBLGen.Pro.ORMSupportClassesFieldLikePredicate
The predicate.

Return Value

Type: FieldLikePredicate

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type FieldLikePredicate. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also