C# - Custom datareader for SqlBulkCopy
When prototyping SisoDb I used DataTables under the covers when consuming the SqlBulkCopy class [http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.aspx] to insert data. This lead to that I had the source entities in memory as well as the DataTables. Since the SqlBulkCopy cl…
Daniel Wertheim