EFCore.BulkExtensions
EFCore.BulkExtensions copied to clipboard
BulkInsertOrUpdateAsync not updating the entity with the existing or new Ids.
var bulkConfig = new BulkConfig
{
SetOutputIdentity = true,
PropertiesToExclude = new List
BulkInsertOrUpdateAsync is NOT updating the entityList with the new or matching Entity.Id after we upgraded to EF7.1.4.
Now we have to make a bulkReadAsync call to get all the ids. Is there a new setting we need to turn on to get the ids with BulkInsertOrUpdateAync call. Please note I was able to see the entitylist getting populated with Ids before the upgrade to E7.1.4 with just BulkInsertOrUpdateAsync call