System.Data (system.data.dll) |
interface |
This interface represents a mapping between a table in the data
source and a table in the DataSet , which may have
a different name. This interface is implemented by the
System.Data.Common.DataTableMapping class.
public interface ITableMapping {
// Public Instance Properties
public IColumnMappingCollection ColumnMappings{get; }
public string DataSetTable{set; get; }
public string SourceTable{set; get; }
}
Implemented By
System.Data.Common.DataTableMapping
Returned By
ITableMappingCollection.{Add( )
, GetByDataSetTable( )}
|