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 the 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[]> |
Specify the property names for update operations. If left empty, all non-ID columns are updated.
public ICollection<UpdateColumn> UpdateColumns { get; set; }
Type | Description |
---|---|
ICollection<UpdateColumn> |