`QueryDsl.update()` doesn't seem to have `values {...
# komapper
d
QueryDsl.update()
doesn't seem to have
values { }
when using
onDuplicateXXX
?
t
onDuplicateXXX
is only supported for
QueryDsl.insert()
not for
QueryDsl.update()
.
values { }
and
onDuplicateXXX
cannot be used together for
QueryDsl.insert()
.
d
Oops, that was a typo, I meant insert...
values { }
and
onDuplicateXXX
cannot be used together for
QueryDsl.insert()
.
Ok, well I guess I'll have to create an instance of the entity to do that, but that's a bit inconsistent...