christophsturm
10/24/2020, 11:10 AMdata class User(
val name: String,
val birthday: LocalDate
)
Find<User>().where(User::name.like("blah%").and(User::birthday.between(date1, date2)))
can i somehow change it to make it possible to remove the User:: part and rewrite it like
Find<User>().where(::name.like("blah%").and(::birthday.between(date1, date2)))eZach Klippenstein (he/him) [MOD]
10/25/2020, 7:22 PMUser as a receiver - so for the API shape you're trying to get, I don't think sochristophsturm
10/27/2020, 1:33 PM