2
0

MissingMappingAction.cs 368 B

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