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.78k stars 586 forks source link

INSERT INTO ... RETURN Id INTO @IdOutParam don't work with PostgreSQL #322

Open hatuan opened 1 year ago

hatuan commented 1 year ago

Hello With postgresql we don't need add "INTO @IdOutParam" in TriggerIdentity column. Only "INSERT INTO ... RETURN Id" will work.

Sorry for my English.