mikependon / RepoDB

A hybrid ORM library for .NET.
Apache License 2.0
1.7k stars 125 forks source link

Fix insertall for Sqlite (2 implementations) [2] #1188

Closed rhuijben closed 4 days ago

rhuijben commented 2 weeks ago

Implements new style insertall support for Sqlite compatible with the implementations for Postgresql and MSSql.

Sqlite implements 'INSERT... RETURNING' like Postgressql, which is the cleanest implementation to use for RepoDb. Fixes the failing tests for Sqlite

This patch continues on top of #1187 (which is exactly the first two commits from this PR)