Npgsql.Bulk
Npgsql.Bulk copied to clipboard
Helper for performing COPY (bulk insert and update) operation easily, using Entity Framework + Npgsql.
Addressing #82 by removing reliance on table and column name when creating temp column name. Postgres has a 63 byte limit on column names
Are there any plans for .net 8 support in the near future?
When running an insert on a table called ``yyyyy_yyyyyyyyyyyyy_yyyyyyy_yyyyyy`` with 2 fields called ``xxxxx_xxxxxxxxxxxxx_xxxxxxx_answer_id`` and ``xxxxx_xxxxxxxxxxxxx_xxxxxxx_id`` **Npgsql.Bulk will run the query:** ``` CREATE TEMP TABLE _temp__a85e0e06_a254_4805_b172_28627fbcfd4d_54 ON COMMIT DROP AS...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.1 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.1 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...
Datamodel gives System.InvalidProgramException: Common Language Runtime detected an invalid program.
Hi, I tried bulk updater in a complex datamodel. Unfortunately it fails in the generated WriterForInsertAction with a InvalidProgramException. I tried to isolate the problem but have not been very...
```c# var uploader = new BulkUploader(context); uploader.Insert(items); // first insert context.SaveChanges(); // will insert items one more time ``` The snippet above shows minimal steps to reproduce, basically after bulk...
Hi, I have an issue with Hilo value generated property, it always set as 0. I noticed in your source code there is an Address entity with Hilo property commented...