Skip to content

v1.3.19

Compare
Choose a tag to compare
@JonathanMagnan JonathanMagnan released this 19 Jun 02:49
· 115 commits to master since this release

Download the library here

  • ADDED: UseBulkOptions extension methods

The method allow you to see some specific options such as the BatchTimeout for a specific action sets.

conn.UseBulkOptions(x =>
    {
        x.Log += s => sb.AppendLine(s);
        x.BatchTimeout = 9000;
    })
    .BulkInsert(list)
    .ThenBulkInsert(x => list);

Trial unlocked for the current month (June)