sqlkata / querybuilder

SQL query builder, written in c#, helps you build complex queries easily, supports SqlServer, MySql, PostgreSql, Oracle, Sqlite and Firebird
https://sqlkata.com
MIT License
3.08k stars 498 forks source link

[Feature request] Insert ignore in mysql, on conflict do nothing postgresql #654

Open askovpen opened 1 year ago

askovpen commented 1 year ago

mysql

insert ignore into tbl values (1,2);

postgresql

insert into tbl values (1,2) on conflict do nothing;