Hello. Is there a way to use id value directly in ...
# exposed
n
Hello. Is there a way to use id value directly in Table operations if i went with DAO's EntityId<*> approach? In other words, how can i use, say, Long value to select from table if i declared table as LongIdTable?
t
YourTable.id eq EntityID(123L, YourTable)
n
Oh, just that? I assumed there will be some more complicated way. Thank you!