<PackageReference Include="System.Data.SqlClient" Version="4.8.0-preview1.19504.10" />

SqlBulkCopyOptions

public enum SqlBulkCopyOptions
Bitwise flag that specifies one or more options to use with an instance of SqlBulkCopy.
namespace System.Data.SqlClient { [Flags] public enum SqlBulkCopyOptions { Default = 0, KeepIdentity = 1, CheckConstraints = 2, TableLock = 4, KeepNulls = 8, FireTriggers = 16, UseInternalTransaction = 32 } }