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