I need to take a list of identification numbers corresponding to the member. They can be processed anywhere from 10 to 10,000 at any given time. I have no problem collecting data, analyzing the data and loading it into a DataTable or something (C #), but I want to do some operations in the database. What is the best way to insert all this data into a table?
I am sure that I do not want to run for each operator and insert 10,000 times.
source
share