PostgreSqlFunctionsAnyILike Method (String, String) |
Will generate a toCompare ILIKE ANY(likePatternArray) fragment in the SQL query using the mapping of this function.
Namespace:
SD.LLBLGen.Pro.DQE.PostgreSql
Assembly:
SD.LLBLGen.Pro.DQE.PostgreSql (in SD.LLBLGen.Pro.DQE.PostgreSql.dll) Version: 5.9.0.0 (5.9.0)
Syntax public static bool AnyILike(
this string toCompare,
string[] likePatternArray
)
<ExtensionAttribute>
Public Shared Function AnyILike (
toCompare As String,
likePatternArray As String()
) As Boolean
Parameters
- toCompare
- Type: SystemString
The string field to perform the LIKE operator on - likePatternArray
- Type: SystemString
the array with LIKE patterns to apply to the string field
Return Value
Type:
BooleanUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. 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).
Remarks For Linq
See Also