LoadOption.cs 641 B

123456789101112131415161718
  1. //------------------------------------------------------------------------------
  2. // <copyright file="LoadOption.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">amirhmy</owner>
  6. // <owner current="true" primary="false">markash</owner>
  7. // <owner current="false" primary="false">jasonzhu</owner>
  8. //------------------------------------------------------------------------------
  9. namespace System.Data {
  10. public enum LoadOption {
  11. OverwriteChanges = 1,
  12. PreserveChanges = 2,
  13. Upsert = 3,
  14. }
  15. }