BulkOptions<T>

Class BulkOptions<T>

Options used for BulkInsert/BulkUpdate/BulkDelete operations.

Inheritance
System.Object
BulkOptions<T>
Namespace: EFBox
Assembly: EFBox.dll
Syntax
    public class BulkOptions<T> : BulkOptionsShared<T>
Type Parameters
NameDescription
T

Type of data used for operation

Properties

AfterBatchWrite

Action to perform tasks after batch write.

Declaration
    public Action<T[]> AfterBatchWrite { get; set; }
Property Value
TypeDescription
Action<><T[]>

BeforeBatchWrite

Function to modify data before batch write.

Declaration
    public Func<T[], T[]> BeforeBatchWrite { get; set; }
Property Value
TypeDescription
Func<, ><T[], T[]>