We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d6a78 commit ea75742Copy full SHA for ea75742
README.md
@@ -26,8 +26,14 @@ similar):
26
where {
27
active isEqualTo "Y"
28
and { id(isEqualToWhenPresent(id_).map { it?.padStart(5, '0') }) }
29
- and { firstName(isLikeCaseInsensitiveWhenPresent(firstName_).map { "%" + it.trim() + "%" }) }
30
- and { lastName(isLikeCaseInsensitiveWhenPresent(lastName_).map { "%" + it.trim() + "%" }) }
+ and {
+ firstName(isLikeCaseInsensitiveWhenPresent(firstName_)
31
+ .map { "%" + it.trim() + "%" })
32
+ }
33
34
+ lastName(isLikeCaseInsensitiveWhenPresent(lastName_)
35
36
37
}
38
orderBy(lastName, firstName)
39
limit(500)
0 commit comments