SqlBulkCopyOptions.cs 780 B

12345678910111213141516171819202122232425
  1. //------------------------------------------------------------------------------
  2. // <copyright file="SqlBulkCopyOptions.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. // <owner current="true" primary="false">[....]</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data.SqlClient {
  9. [Flags]
  10. public enum SqlBulkCopyOptions {
  11. Default = 0,
  12. KeepIdentity = 1 << 0,
  13. CheckConstraints = 1 << 1,
  14. TableLock = 1 << 2,
  15. KeepNulls = 1 << 3,
  16. FireTriggers = 1 << 4,
  17. UseInternalTransaction = 1 << 5,
  18. }
  19. }