DataTableMappingCollection::Item Property (String^)
.NET Framework (current version)
Gets or sets the DataTableMapping object with the specified source table name.
Assembly: System.Data (in System.Data.dll)
public: [BrowsableAttribute(false)] property DataTableMapping^ default[ String^ sourceTable ] { DataTableMapping^ get(String^ sourceTable); void set(String^ sourceTable, DataTableMapping^ value); }
Parameters
- sourceTable
-
Type:
System::String^
The case-sensitive name of the source table.
Property Value
Type: System.Data.Common::DataTableMapping^The DataTableMapping object with the specified source table name.
The following example searches for a DataTableMapping object with the given source table name within a DataTableMappingCollection collection. If the DataTableMapping exists, the example displays the name and the index of the mapping. If the mapping does not exist, the example displays an error. This example assumes that a DataTableMappingCollection collection has been created.
.NET Framework
Available since 1.1
Available since 1.1
Show: