Hi,
We are using .Net and oracle backend and using stored procedures to save data into the database.I have a collection object like
List<Customer> cust = new List<Customer>();
Say this contains 4 rows. I want to update all 4 rows into the database in one shot. Currently I loop this collection and save one by one.
Can you please explain the way to save all the records in the collection in one shot.
Thanks,
Pugal