DataTableMappingCollection::Item Property (String^)

 

Gets or sets the DataTableMapping object with the specified source table name.

Namespace:   System.Data.Common
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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: