I have to choose between 2 approaches.
Persist my list in the data base using MyList.Foreach(p => DoIt(p));
-or-
Use something like DoIt(MyList);
DoIt is a DAL method in my separate layer.
What are the use cases for them?
I am interested in resource usage and performance between these two scenarios. My Dal uses using to create the connection object everytime the method is called.