DataTableMappingCollection.GetByDataSetTable(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the DataTableMapping object with the specified DataSet table name.
public:
System::Data::Common::DataTableMapping ^ GetByDataSetTable(System::String ^ dataSetTable);
public System.Data.Common.DataTableMapping GetByDataSetTable (string dataSetTable);
member this.GetByDataSetTable : string -> System.Data.Common.DataTableMapping
Public Function GetByDataSetTable (dataSetTable As String) As DataTableMapping
Parameters
Returns
The DataTableMapping object with the specified DataSet table name.
Examples
The following example searches for a DataTableMapping within the collection. If the object exists, it is returned. The example assumes that a DataTableMappingCollection collection and a DataTableMapping object have been created.
public void FindDataTableMapping()
{
// ...
// create mappings and mapping
// ...
if (mappings.IndexOfDataSetTable("datacategories") != -1)
mapping = mappings.GetByDataSetTable("datacategories");
}
Public Sub FindDataTableMapping()
' ...
' create mappings and mapping
' ...
If mappings.IndexOfDataSetTable("datacategories") <> - 1 Then
mapping = mappings.GetByDataSetTable("datacategories")
End If
End Sub