This topic has not yet been rated - Rate this topic

DataRelationCollection Class

Represents the collection of DataRelation objects for this DataSet.

System.Object
  System.Data.InternalDataCollectionBase
    System.Data.DataRelationCollection

Namespace:  System.Data
Assembly:  System.Data (in System.Data.dll)
public abstract class DataRelationCollection : InternalDataCollectionBase

The DataRelationCollection type exposes the following members.

  Name Description
Protected method Supported by the XNA Framework DataRelationCollection Initializes a new instance of the DataRelationCollection class.
Top
  Name Description
Public property Supported by the XNA Framework Count Gets the total number of elements in a collection. (Inherited from InternalDataCollectionBase.)
Public property Supported by the XNA Framework IsReadOnly Gets a value that indicates whether the InternalDataCollectionBase is read-only. (Inherited from InternalDataCollectionBase.)
Public property Supported by the XNA Framework IsSynchronized Gets a value that indicates whether the InternalDataCollectionBase is synchonized. (Inherited from InternalDataCollectionBase.)
Public property Supported by the XNA Framework Item[Int32] Gets the DataRelation object at the specified index.
Public property Supported by the XNA Framework Item[String] Gets the DataRelation object specified by name.
Protected property Supported by the XNA Framework List Gets the items of the collection as a list. (Inherited from InternalDataCollectionBase.)
Public property Supported by the XNA Framework SyncRoot Gets an object that can be used to synchronize the collection. (Inherited from InternalDataCollectionBase.)
Top
  Name Description
Public method Supported by the XNA Framework Add(DataRelation) Adds a DataRelation to the DataRelationCollection.
Public method Supported by the XNA Framework Add(DataColumn, DataColumn) Creates a DataRelation with a specified parent and child column, and adds it to the collection.
Public method Supported by the XNA Framework Add(DataColumn[], DataColumn[]) Creates a DataRelation with the specified parent and child columns, and adds it to the collection.
Public method Supported by the XNA Framework Add(String, DataColumn, DataColumn) Creates a DataRelation with the specified name, and parent and child columns, and adds it to the collection.
Public method Supported by the XNA Framework Add(String, DataColumn[], DataColumn[]) Creates a DataRelation with the specified name and arrays of parent and child columns, and adds it to the collection.
Public method Supported by the XNA Framework Add(String, DataColumn, DataColumn, Boolean) Creates a DataRelation with the specified name, parent and child columns, with optional constraints according to the value of the createConstraints parameter, and adds it to the collection.
Public method Supported by the XNA Framework Add(String, DataColumn[], DataColumn[], Boolean) Creates a DataRelation with the specified name, arrays of parent and child columns, and value specifying whether to create a constraint, and adds it to the collection.
Protected method Supported by the XNA Framework AddCore Performs verification on the table.
Public method Supported by the XNA Framework AddRange Copies the elements of the specified DataRelation array to the end of the collection.
Public method Supported by the XNA Framework CanRemove Verifies whether the specified DataRelation can be removed from the collection.
Public method Supported by the XNA Framework Clear Clears the collection of any relations.
Public method Supported by the XNA Framework Contains Verifies whether a DataRelation with the specific name (case insensitive) exists in the collection.
Public method Supported by the XNA Framework CopyTo(Array, Int32) Copies all the elements of the current InternalDataCollectionBase to a one-dimensional Array, starting at the specified InternalDataCollectionBase index. (Inherited from InternalDataCollectionBase.)
Public method Supported by the XNA Framework CopyTo(DataRelation[], Int32) Copies the collection of DataRelation objects starting at the specified index.
Public method Supported by the XNA Framework Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Supported by the XNA Framework Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Protected method Supported by the XNA Framework GetDataSet Infrastructure. This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Public method Supported by the XNA Framework GetEnumerator Gets an IEnumerator for the collection. (Inherited from InternalDataCollectionBase.)
Public method Supported by the XNA Framework GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method Supported by the XNA Framework GetType Gets the Type of the current instance. (Inherited from Object.)
Public method Supported by the XNA Framework IndexOf(DataRelation) Gets the index of the specified DataRelation object.
Public method Supported by the XNA Framework IndexOf(String) Gets the index of the DataRelation specified by name.
Protected method Supported by the XNA Framework MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method Supported by the XNA Framework OnCollectionChanged Raises the CollectionChanged event.
Protected method Supported by the XNA Framework OnCollectionChanging Raises the CollectionChanged event.
Public method Supported by the XNA Framework Remove(DataRelation) Removes the specified relation from the collection.
Public method Supported by the XNA Framework Remove(String) Removes the relation with the specified name from the collection.
Public method Supported by the XNA Framework RemoveAt Removes the relation at the specified index from the collection.
Protected method Supported by the XNA Framework RemoveCore Performs a verification on the specified DataRelation object.
Public method Supported by the XNA Framework ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Public event Supported by the XNA Framework CollectionChanged Occurs when the collection has changed.
Top

A DataRelationCollection object enables navigation between related parent/child DataTable objects.

You create a DataRelationCollection object by defining it as a property of either the DataSet or the DataTable, instead of by directly using a constructor. (Use the Relations property of the DataSet, or the ParentRelations property of the DataTable.)

To access the collection, use the Relations property of the DataSet object.

As soon as the collection exists you can manage the objects it contains by using methods such as Add, Clear, and Remove.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

This type is safe for multithreaded read operations. You must synchronize any write operations.

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ