linq2db bulkcopyasync without error but no data inserted in the database
问题 I am using linq2db .NET Core library to bulk insert a collection. This code can be executed without error but there is no data in the database. There are 2000 person object in persons list object. Person object has already identity in it. using (var db = SqlServerTools.CreateDataConnection(connstring) { await db.BulkCopyAsync(new BulkCopyOptions { KeepIdentity = true, TableName = "[Persons].[Person]" }, persons); } Person table in in Persons schema. I have also tried with BulkCopy which can