I am using the ADO.Net Entity Model. Everytime I create a record, I am calling _entity.AddToTable(object); _entity.SaveChanges();
What is the fastest way of inserting the data? Is there any "batch" or "SqlBulkCopy" option for entity model?
I am using the ADO.Net Entity Model. Everytime I create a record, I am calling _entity.AddToTable(object); _entity.SaveChanges();
What is the fastest way of inserting the data? Is there any "batch" or "SqlBulkCopy" option for entity model?