i want to insert 10000+ rows in my database fast (I tried with linqtosql and it took me more than 2 minutes) and after a research on the internet I found out about SQL Bulk Copy, but I am don't really understand it. Can someone give me a good example in my case? I fill a list from a .csv file so all my data are in this
List<myTable> datalist = new List<myTable>();
and I also have a context in order to execute SQL transactions.