PostgreSqlFunctions Methods |
Name | Description | |
---|---|---|
![]() ![]() | AllILike(String,String[]) |
Will generate a toCompare ILIKE ALL(likePatternArray) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AllILike(IEntityFieldCore,String[]) |
Will generate a stringField ILIKE ALL(likePatternArray) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AllLike(String,String[]) |
Will generate a toCompareWith LIKE ALL(likePatternArray) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AllLike(IEntityFieldCore,String[]) |
Will generate a stringField LIKE ALL(likePatternArray) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyGreaterEqualThan<T>(T[], T) |
Will generate a toCompareWith <= ANY(arrayValue) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyGreaterEqualThan<T>(IEntityFieldCore, T) |
Will generate a toCompareWith <= ANY(arrayField) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyGreaterThan<T>(T[], T) |
Will generate a toCompareWith < ANY(arrayValue) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyGreaterThan<T>(IEntityFieldCore, T) |
Will generate a toCompareWith < ANY(arrayField) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyILike(String,String[]) |
Will generate a toCompare ILIKE ANY(likePatternArray) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyILike(IEntityFieldCore,String[]) |
Will generate a stringField ILIKE ANY(likePatternArray) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyLesserEqualThan<T>(T[], T) |
Will generate a toCompareWith >= ANY(arrayValue) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyLesserEqualThan<T>(IEntityFieldCore, T) |
Will generate a toCompareWith >= ANY(arrayField) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyLesserThan<T>(T[], T) |
Will generate a toCompareWith > ANY(arrayValue) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyLesserThan<T>(IEntityFieldCore, T) |
Will generate a toCompareWith > ANY(arrayField) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyLike(String,String[]) |
Will generate a toCompare LIKE ANY(likePatternArray) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | AnyLike(IEntityFieldCore,String[]) |
Will generate a stringField LIKE ANY(likePatternArray) fragment in the SQL query using the mapping of this function.
|
![]() ![]() | IsContainedBy(IEntityFieldCore, Object) |
Will generate a arrayField <@ containingArray fragment in the SQL query using the mapping of this function.
|
![]() ![]() | IsContainedBy<T>(T[],T[]) |
Will generate a containedArray <@ containingArray fragment in the SQL query using the mapping of this function.
|
![]() ![]() | IsOverlappedBy(IEntityFieldCore, Object) |
Will generate an arrayField && array2 fragment in the SQL query using the mapping of this function. Returns true if the arrays share at least one
common element
|
![]() ![]() | IsOverlappedBy<T>(T[],T[]) |
Will generate an array1 && array2 fragment in the SQL query using the mapping of this function. Returns true if the arrays share at least one
common element
|