Hello,
Is it possible to configure insertOrUpdate statement to DO NOTHING instead of performing upsert when row with given PK already exist?
Use case: I want insert list (dozens) of rows and instead of performing (get row + insert if not exist) for each I would like instruct insert statement to DO NOTHING on conflict detection.
Thanks for help in advance! :)