| 123456789101112131415161718192021222324 |
- //
- // System.Data.MissingMappingAction.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- using System;
- namespace System.Data
- {
- /// <summary>
- /// Determines the action that occurs when a mapping is missing from a source table or a source column.
- /// </summary>
- [Serializable]
- public enum MissingMappingAction
- {
- Passthrough = 1,
- Ignore = 2,
- Error = 3
- }
- }
|