LinqToSql Plus Execute Event

BulkOperationExecuting

Gets or sets an action to execute before the bulk operation is executed.

context.BulkMerge(options => {
	options.BulkOperationExecuting = bulkOperation => { /* configuration */ };
});

BulkOperationExecuted

Gets or sets an action to execute after the bulk operation is executed.

context.BulkMerge(options => {
	options.BulkOperationExecuted = bulkOperation => { /* configuration */ };
});



Prime Library