1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
//------------------------------------------------------------------------------
// <copyright file="MissingMappingAction.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">markash</owner>
// <owner current="true" primary="false">laled</owner>
//------------------------------------------------------------------------------
namespace System.Data {
public enum MissingMappingAction {
Passthrough = 1,
Ignore = 2,
Error = 3,
}
}
|