MissingMappingAction.cs 411 B

123456789101112131415161718192021222324
  1. //
  2. // System.Data.MissingMappingAction.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. using System;
  10. namespace System.Data
  11. {
  12. /// <summary>
  13. /// Determines the action that occurs when a mapping is missing from a source table or a source column.
  14. /// </summary>
  15. [Serializable]
  16. public enum MissingMappingAction
  17. {
  18. Passthrough = 1,
  19. Ignore = 2,
  20. Error = 3
  21. }
  22. }