Hey, we just started using exposed in production a...
# exposed
k
Hey, we just started using exposed in production and it is amazing. One question though, is it possible to use db lock in exposed? e.g. Mysql SELECT ... LOCK IN SHARE MODE or Mysql SELECT ... FOR UPDATE?
t
ATM only
FOR UPDATE
supported.
FooTable.select { FooTable.id eq 5 }.forUpdate().toList()