BulkSynchronize remove subset data VB.NET

85 Views Asked by At

I am using Entity Framework Extensions (EFE) in VB.Net project and I wanna to know how to write below mentioned C# Syntax in VB.Any help is appreciated

ctx.BulkSynchronize(list, options => options.ColumnSynchronizeDeleteKeySubsetExpression = c => c.Type)

1

There are 1 best solutions below

0
On BEST ANSWER

Here is an example with VB.NET

context.BulkMerge(customers, New Action(Of Z.EntityFramework.Extensions.EntityBulkOperation(Of Customer))(Sub(bulk As Z.EntityFramework.Extensions.EntityBulkOperation(Of Customer))
          bulk.ColumnPrimaryKeyExpression = Function(cust As Customer) cust.Code
      End Sub))