Hello.
In my case I need using BulkMegre method inside our transaction. Example source code:
using (var cnn = new SqlConnection("..."))
{
cnn.Open();
using (var tran = cnn.BeginTransaction())
{
cnn.BulkMerge(entities);
}
}
But BulkMerge throw exception: ex.txt
Can you help?