次の方法で共有


DataSet.Relations プロパティ

テーブルをリンクし、親テーブルから子テーブルへ移動できるようにするリレーションシップのコレクションを取得します。

Public ReadOnly Property Relations As DataRelationCollection
[C#]
public DataRelationCollection Relations {get;}
[C++]
public: __property DataRelationCollection* get_Relations();
[JScript]
public function get Relations() : DataRelationCollection;

プロパティ値

DataRelation オブジェクトのコレクションが格納されている DataRelationCollectionDataRelation オブジェクトが存在しない場合は null 値。

使用例

[Visual Basic] Relations プロパティを使用して、すべての子テーブルの列名を出力する例を次に示します。

 
Private Sub PrintChildRelationRows()
   ' Declare variable to hold the row values.
   Dim strRowVals As String
   Dim myDataSet As DataSet
   ' Get the DataSet of a DataGrid that is displaying data of at least two
   ' tables.
   Dim myTable As DataTable = CType(DataGrid1.DataSource, DataTable)
   ' Navigate using the Relations.
   Dim myRel As DataRelation
   Dim row As DataRow
   Dim col As DataColumn
   ' Print the names of each column in each table through the Relations.
   For Each myRel In myDataSet.Relations
      For Each col in myRel.ChildTable.Columns
          strRowVals &= col.ColumnName & " "
      Next
    Next
    ' Display results.
    Console.WriteLine(strRowVals)
   End Sub

[C#, C++, JScript] C#、C++、および JScript のサンプルはありません。Visual Basic のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

DataSet クラス | DataSet メンバ | System.Data 名前空間 | DataRelation | DataTable | DataRelationCollection