PostgreSqlFunctionsAllILike Method (IEntityFieldCore, String) |
Will generate a stringField ILIKE ALL(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 FunctionMappingExpression AllILike(
IEntityFieldCore stringField,
string[] likePatternArray
)
Public Shared Function AllILike (
stringField As IEntityFieldCore,
likePatternArray As String()
) As FunctionMappingExpression
Parameters
- stringField
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldCore
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:
FunctionMappingExpressionRemarks For QuerySpec
See Also