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
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET