N.EntityFrameworkCore.Extensions
N.EntityFrameworkCore.Extensions copied to clipboard
Bulk data support for the EntityFrameworkCore 8.0.0+
``Data is not saved to table columns mapped as complex properties. If these columns are set to NOT NULL in database, then exception is thrown For example: ```sql create table...
**To Reproduce** 1. create table in database ```sql CREATE SCHEMA [scm]; GO CREATE TABLE [scm].[tbl]( [id] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY, [name] [nvarchar](120) NULL, [color] [int] NULL, ) ON...
**Describe the bug** Create a class with a Guid ID that is pre-loaded... it can not be bulk inserted... **To Reproduce** Steps to reproduce the behavior: 1. Clone BulkInsert.With_Complex_Key 2....
**Is your feature request related to a problem? Please describe.** It is quite challenging when there is a complex relationship between entities to get all of the PK->FK correct, and...
Not sure if you would like help with this but I saw some things that could be improved in the code and also structure it so it is easier to...