Bulk Delete...Definition...DELETE... all entities from the database....All rows that match the entity key are ...DELETED... from the database....// Easy to use
context.BulkDelete(list);
// Easy to customize
context.BulkDelete(customers, options => options.ColumnPrimaryKeyExpression = customer => customer.Code);
...Try it...Purpose...Deleting... entities using a custom key from file importation is a typical scenario....Despite the ...ChangeTracker... being outstanding to track what's modified, i...