tmsmith / Dapper-Extensions

Dapper Extensions is a small library that complements Dapper by adding basic CRUD operations (Get, Insert, Update, Delete) for your POCOs. For more advanced querying scenarios, Dapper Extensions provides a predicate system. The goal of this library is to keep your POCOs pure by not requiring any attributes or base class inheritance.
1.79k stars 586 forks source link

Execution insert error #283

Open tianxujun opened 2 years ago

tianxujun commented 2 years ago

image

ALMMa commented 2 years ago

Have you configured DapperExtensions to use Postgres dialect?

DapperExtensions.DapperExtensions.SqlDialect = new DapperExtensions.Sql.PostgreSqlDialect();

If yes, then this is likely a duplicate of https://github.com/tmsmith/Dapper-Extensions/issues/273