Entity Framework EF Core efcore Bulk Batch Extensions with BulkCopy in .Net for Insert Update Delete Read (CRUD), Truncate and SaveChanges operations on SQL Server, PostgreSQL, MySQL, SQLite
The exception occurs when using a PostgreSQL or MySQL database. Not sure, if you like to support databases other than SqlServer and Sqlite. At least, there is a comment in the code SqlServerDialect.cs, line 36:
var isSqlServer = true; // SqlServer : PostrgeSql; // TODO change to specific type
A minimal example to reproduce the exception: EFCore.BulkExtensions.ReproduceIssue532.zip
The exception occurs when using a PostgreSQL or MySQL database. Not sure, if you like to support databases other than SqlServer and Sqlite. At least, there is a comment in the code SqlServerDialect.cs, line 36:
var isSqlServer = true; // SqlServer : PostrgeSql; // TODO change to specific type
A minimal example to reproduce the exception: EFCore.BulkExtensions.ReproduceIssue532.zipOriginally posted by @fschick in https://github.com/borisdj/EFCore.BulkExtensions/issues/532#issuecomment-902504666