Currently inserting thousands (1000, 10000, 100000) of records is really slow. I think there is room for improvement, so I am creating feature request for bulk SaveChanges.
Inspiration came form (EntityFramework Extensions).
In my case, the factor between SaveChanges and BulkSaveChanges is even greater then:

I think this is somehow related with #9270 and #795, but not duplicated. (I might be mistaken.)
Use case:
- import entire table from another source (excel, web ...)
- custom reports - query some data from multiple tables, process results and write it to (temp) table
Currently inserting thousands (1000, 10000, 100000) of records is really slow. I think there is room for improvement, so I am creating feature request for bulk SaveChanges.
Inspiration came form (EntityFramework Extensions).
In my case, the factor between

SaveChangesandBulkSaveChangesis even greater then:I think this is somehow related with #9270 and #795, but not duplicated. (I might be mistaken.)
Use case: