Insertion Large Number Of Entities Into Sql Server 2012
I'm on a project using Entity Framework 5 and SQL Server 2012. We have a need to insert a large number of rows at once (order of 100k entities). Basically we have a physics progr
Solution 1:
I would look into the Bulk Insert that is available. Here is a link to some information on it: Bulk Insert. I would also look at SQL Compact Bulk, which was used Here . Another link where a user submitted his code Stack Link.
Post a Comment for "Insertion Large Number Of Entities Into Sql Server 2012"