// // System.Data.IColumnMapping.cs // // Author: // Christopher Podurgiel (cpodurgiel@msn.com) // // (C) Chris Podurgiel // namespace System.Data { /// /// Associates a data source column with a DataSet column, and is implemented by the DataColumnMapping class, which is used in common by .NET data providers. /// public interface IColumnMapping { /// /// Gets or sets the name of the column within the DataSet to map to. /// string DataSetColumn { get; set; } /// /// Gets or sets the name of the column within the data source to map from. The name is case-sensitive. /// string SourceColumn { get; set; } } }