.NET Framework Class Library ITableMappingCollection Interface Contains a collection of TableMapping objects, and is implemented by the DataTableMappingCollection, which is used in common by .NET Framework data providers.
Namespace:
System.Data
Assembly:
System.Data (in System.Data.dll)

Syntax
Public Interface ITableMappingCollection _
Inherits IList, ICollection, IEnumerable
public interface ITableMappingCollection : IList,
ICollection, IEnumerable
public interface class ITableMappingCollection : IList,
ICollection, IEnumerable
type ITableMappingCollection =
interface
interface IList
interface ICollection
interface IEnumerable
end
The ITableMappingCollection type exposes the following members.

Properties

Methods

Extension Methods

Remarks
The ITableMappingCollection interface allows an inheriting class to implement a TableMapping collection. For more information, see DataAdapter DataTable and DataColumn Mappings (ADO.NET). An application does not create an instance of the ITableMappingCollection interface directly, but creates an instance of a class that inherits ITableMappingCollection. Classes that inherit ITableMappingCollection must implement the inherited members, and typically define additional members to add provider-specific functionality. For example, the ITableMappingCollection interface defines one implementation of the RemoveAt method. In turn, the DataTableMappingCollection class inherits this method, and defines two additional overloads of RemoveAt. Notes to ImplementersWhen you inherit from the ITableMappingCollection interface, you should implement the following constructor: Item | Description |
|---|
PrvTableMappingCollection() | Creates an empty PrvTableMappingCollection class. |

Examples
The following example creates an instance of the derived class, DataTableMapping, and adds it to a DataTableMappingCollection collection. It then informs the user that the mapping was added to the collection.
Public Sub AddDataTableMapping()
' ...
' create tableMappings
' ...
Dim mapping As New DataTableMapping( _
"Categories", "DataCategories")
tableMappings.Add(CType(mapping, Object))
Console.WriteLine( _
"Table {0} added to {1} table mapping collection.", _
mapping.ToString(), tableMappings.ToString())
End Sub
public void AddDataTableMapping()
{
// ...
// create tableMappings
// ...
DataTableMapping mapping =
new DataTableMapping("Categories","DataCategories");
tableMappings.Add((Object) mapping);
Console.WriteLine("Table {0} added to {1} table mapping collection.",
mapping.ToString(), tableMappings.ToString());
}

Version Information
.NET FrameworkSupported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0 .NET Framework Client ProfileSupported in: 4, 3.5 SP1

Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role not supported), 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.

See Also
|
Biblioteca de clases de .NET Framework ITableMappingCollection (Interfaz) Contiene una colección de objetos TableMapping. La implementa la clase DataTableMappingCollection, que utilizan todos los proveedores de datos de .NET Framework.
Espacio de nombres:
System.Data
Ensamblado:
System.Data (en System.Data.dll)

Sintaxis
Public Interface ITableMappingCollection _
Inherits IList, ICollection, IEnumerable
public interface ITableMappingCollection : IList,
ICollection, IEnumerable
public interface class ITableMappingCollection : IList,
ICollection, IEnumerable
type ITableMappingCollection =
interface
interface IList
interface ICollection
interface IEnumerable
end
El tipo ITableMappingCollection expone los siguientes miembros.

Propiedades

Métodos

Métodos de extensión

Comentarios
La interfaz ITableMappingCollection permite a una clase heredada implementar una colección TableMapping. Para obtener más información, vea Asignaciones DataAdapter, DataTable y DataColumn (ADO.NET). Una aplicación no crea una instancia de la interfaz ITableMappingCollection directamente, sino que crea una instancia de una clase que hereda de ITableMappingCollection. Las clases que heredan de ITableMappingCollection deben implementar los miembros heredados y suelen definir miembros adicionales para agregar la funcionalidad específica de proveedor. Por ejemplo, la interfaz ITableMappingCollection define una implementación del método RemoveAt. A su vez, la clase DataTableMappingCollection hereda este método y define dos sobrecargas adicionales de RemoveAt. Notas para los implementadoresAl heredar de la interfaz ITableMappingCollection, se debe implementar el constructor siguiente: Elemento | Descripción |
|---|
PrvTableMappingCollection() | Crea una clase PrvTableMappingCollection vacía. |

Ejemplos
En el ejemplo siguiente se crea una instancia de la clase derivada DataTableMapping y se agrega a una colección DataTableMappingCollection. A continuación, se informa al usuario de que se ha agregado la asignación a la colección.
Public Sub AddDataTableMapping()
' ...
' create tableMappings
' ...
Dim mapping As New DataTableMapping( _
"Categories", "DataCategories")
tableMappings.Add(CType(mapping, Object))
Console.WriteLine( _
"Table {0} added to {1} table mapping collection.", _
mapping.ToString(), tableMappings.ToString())
End Sub
public void AddDataTableMapping()
{
// ...
// create tableMappings
// ...
DataTableMapping mapping =
new DataTableMapping("Categories","DataCategories");
tableMappings.Add((Object) mapping);
Console.WriteLine("Table {0} added to {1} table mapping collection.",
mapping.ToString(), tableMappings.ToString());
}

Información de versión
.NET FrameworkCompatible con: 4, 3.5, 3.0, 2.0, 1.1, 1.0 .NET Framework Client ProfileCompatible con: 4, 3.5 SP1

Plataformas
Windows 7, Windows Vista SP1 o posterior, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (no se admite Server Core), Windows Server 2008 R2 (se admite Server Core con SP1 o posterior), Windows Server 2003 SP2
.NET Framework no admite todas las versiones de todas las plataformas. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.

Vea también
|