-
### Description
Hello @JonathanMagnan,
When adding to the db more than 2 files (pdf in my case) in the form of `byte[]`, BulkSaveChanges truncates the arrays. This is not compression, it's truncat…
-
```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 t…
-
I am currently implementing domain-driven design in my project. Before adopting the bulk extension, I utilized the AddRange and SaveChanges methods in EF Core. However, after incorporating EfCore.Bulk…
-
#795 tracks bulk update/delete operations which execute directly on the database and completely bypass the change tracker. This issue proposes similar bulk operations which do update the change tracke…
-
Databases usually provide various mechanisms for efficient bulk import of data from the client (e.g. .NET application) into the database. We already have issues tracking improving INSERT performance (…
-
This is a grouping of related issues. Feel free to vote (👍) for this issue to indicate that this is an area that you think we should spend time on, but consider also voting for individual issues for t…
-
(fleshing out a concept suggested by @luisquintanilla)
When ingesting data into a vector database, the input data (e.g. text) needs to be converted to embeddings. When the embeddings are stored in a …
roji updated
3 months ago
-
The RavenDB 3.5 persistence audit ingestion is based on RavenDB bulk-inserts. When we developed the RavenDB 5 persistence, we also based it on RavenDB bulk inserts.
We have seen some evidence that …
-
With SQL Server you can used table-values parameters to perform bulk DML very quickly and elegantly. Unfortunately, this is tedious:
1. Create a table type
2. Write an INSERT statement
3. Create a Dat…
-
### Description
await _unitOfWorkManager.Current.SaveChangesAsync(); it too slow when i insert massive data
This problem has a solution in efcore, set context.Configuration.AutoDetectChangesE…