Title here
Summary here
Options used for BulkInsert/BulkUpdate/BulkDelete operations.
public class BulkOptions<T> : BulkOptionsShared<T>
Name | Description |
---|---|
T | Type of data used for operation |
Action to perform tasks after batch write.
public Action<T[]> AfterBatchWrite { get; set; }
Type | Description |
---|---|
Action<><T[]> |
Function to modify data before batch write.
public Func<T[], T[]> BeforeBatchWrite { get; set; }
Type | Description |
---|---|
Func<, ><T[], T[]> |