//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // markash // laled //------------------------------------------------------------------------------ namespace System.Data { public enum MissingMappingAction { Passthrough = 1, Ignore = 2, Error = 3, } }