DataTableMapping.SourceTable 속성

정의

데이터 원본에서 대/소문자를 구분하는 원본 테이블 이름을 가져오거나 설정합니다.

public:
 property System::String ^ SourceTable { System::String ^ get(); void set(System::String ^ value); };
[System.Data.DataSysDescription("DataTableMapping_SourceTable")]
public string SourceTable { get; set; }
public string SourceTable { get; set; }
[<System.Data.DataSysDescription("DataTableMapping_SourceTable")>]
member this.SourceTable : string with get, set
member this.SourceTable : string with get, set
Public Property SourceTable As String

속성 값

데이터 원본의 대/소문자를 구분하는 원본 테이블 이름입니다.

구현

특성

예제

다음 예제에서는 개체를 DataTableMapping 만들고 일부 속성을 설정합니다.

public void CreateDataTableMapping()
{
    DataTableMapping mapping = new DataTableMapping();
    mapping.SourceTable = "Categories";
    mapping.DataSetTable = "DataCategories";
}
Public Sub CreateDataTableMapping()
    Dim mapping As New DataTableMapping()
    mapping.SourceTable = "Categories"
    mapping.DataSetTable = "DataCategories"
End Sub

적용 대상

추가 정보