EFCore.BulkExtensions
EFCore.BulkExtensions copied to clipboard
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
Does `EFCore.BulkExntensions` ignore custom conversions? I receive the exception while try to use `BulkInsertOrUpdateAsync` with PostgreSQL: `System.InvalidCastException: Can't write CLR type NodaTime.TimeZones.CachedDateTimeZone with handler type TextHandler` Conversion: ``` builder.Property(p =>...
BulkInsertOrUpdateOrDelete: bulkConfig.StatsInfo.StatsNumberInserted is wrong if nothing was updated
I'm using EFCore.BulkExtensions v6.0.7 and initialize my table on a MS SQL server with ``` context.Students.BatchDelete(); context.Students.Add(new Student() { StudentId = 1, Name = "John Doe" }); context.SaveChanges(); ``` Later...
I am using 3.2.5 in UWP app with SQLite. I cannot upgrade to latest version due to .NET Standard 2.1 is not fully supported to UWP so we cannot upgrade...
This is a question. I'm using SQLite DB and trying to achieve the following. Any idea how to achieve (or) nearly achieve such a case? ``` var customers = new...
Just a question. While testing `BulkRead` I noticed that if I use a **static** `BulkConfig` it only fetches the data the first time. All successive attempts while app was running...
I have a somewhat special use case in my EFCore application. When a DBContext is newed up i need it to re-use a SqliteConnection object from my own application connection...
Is it possible to do a BulkRead if using TPT? https://docs.microsoft.com/en-us/ef/core/modeling/inheritance#table-per-type-configuration
hello in my case i need to be able to handle multiple large bulk insert in parallel after multiple test what i have seen is the merge pattern is slower...
when the `SetOutputIdentity = true` is set, it create a lot of traffic over the wire. My understanding there is a select * being done on the output table to...
for every table there is seven EF queries sent, in a case of `SetOutputIdentity = true` which include `IncludeGraph = true` 1. create table 2. create output table 3. alter...