Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
public virtual string Pattern { get; set; }

Property Value

Type: String
Remarks
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