I have a database table which has 2 columns and I have a List where T has 2 properties.
How can I create a transaction so that I can effectively say:
UPDATE MyTable
SET ColumnA = List<T> 1st property
WHERE ColumnB = List<T> 2nd Property
A transaction may not necessarily be needed if one update will get executed but if I have 100 items in my List what will be required to get this working?