I\'m looking for the fastest way of inserting into Entity Framework.
I\'m asking this because of the scenario where you have an active TransactionScope a
TransactionScope
As per my knowledge there is no BulkInsert in EntityFramework to increase the performance of the huge inserts.
no BulkInsert
EntityFramework
In this scenario you can go with SqlBulkCopy in ADO.net to solve your problem
ADO.net