FieldLikePredicatePattern Property |
Gets / sets the pattern to use in a Field LIKE Pattern clause.
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 virtual string Pattern { get; set; }
Public Overridable Property Pattern As String
Get
Set
Property Value
Type:
StringRemarks if this predicate is used in in-memory filtering, this pattern can also be a regular expression, though in that case, don't use
% characters but normal regular expression characters. If this pattern is a regular expression, set the flag PatternIsRegEx to true.
If PatternRegEx is false, the value of Pattern is considered a normal string with the standard LIKE syntaxis (i.e. with % as wildcard).
See Also