DataRelation.RelationName Свойство
Определение
Возвращает или задает имя, используемое для извлечения DataRelation из DataRelationCollection.Gets or sets the name used to retrieve a DataRelation from the DataRelationCollection.
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
Значение свойства
Имя DataRelation.The name of the a DataRelation.
- Атрибуты
Исключения
Значение null
или пустая строка ("") были переданы в объект DataColumn, который является отношением DataRelation.null
or empty string ("") was passed into a DataColumn that is a DataRelation.
Объект DataRelation принадлежит коллекции, которая уже содержит объект DataRelation с тем же именем.The DataRelation belongs to a collection that already contains a DataRelation with the same name.
Примеры
В следующем примере свойство используется RelationName для получения DataRelation из DataRelationCollection .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
Комментарии
Используйте RelationName свойство для получения DataRelation из DataRelationCollection .Use the RelationName property to retrieve a DataRelation from the DataRelationCollection.