Skip to content

Commit 5a1ccc6

Browse files
Update fastest-way-to-insert.md
1 parent 33e2a33 commit 5a1ccc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/pages/articles/fastest-way-to-insert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ So if you have 5000 entities to insert, 5000 databases round trip will be execut
2424
A very common mistake is believing the AddRange method perform a Bulk Insert. Using the AddRange method greatly improve the performance because it calls the DetectChanges method only once after all entities are added to the change tracker. However, the SaveChanges method will still make one database round-trip per entity.
2525

2626
### Solution
27-
To solve the performance problem, you need to reduce the number of database round-trip, and this is exactly what Entity Framework Extensions made by ZZZ Projects do by providing all kind of bulk operations:
27+
To solve the performance problem, you need to reduce the number of database round-trip, and this is exactly what Entity Framework Extensions made by ZZZ Projects do by providing the BulkInsert method and all other bulk operations:
2828

2929
- [BulkSaveChanges](#ef-bulksavechanges)
3030
- [BulkInsert](#ef-bulkinsert)

0 commit comments

Comments
 (0)