DataRelation.RelationName Property (System.Data) (original) (raw)

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.

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

Property Value

The name of the a DataRelation.

Attributes

Exceptions

Examples

The following example uses the RelationName property to retrieve a DataRelation from a DataRelationCollection.

Private Sub GetRelation()
    ' Get the collection of a DataSet.
    Dim collection As DataRelationCollection = _
        DataSet1.Relations

    ' Add a relation named CustomerOrders.
    Dim myRel As DataRelation = _
        collection("CustomerOrders")

    ' Print the RelationName.
    Console.WriteLine(myRel.RelationName.ToString())
End Sub

Remarks

Use the RelationName property to retrieve a DataRelation from the DataRelationCollection.

Applies to

See also