Class ColumnCollection

Namespace
DbExport.Schema
Assembly
DbExport.Api.dll

Represents a collection of database columns.

public class ColumnCollection : SchemaItemCollection<Column>, IList<Column>, ICollection<Column>, IReadOnlyList<Column>, IReadOnlyCollection<Column>, IEnumerable<Column>, IList, ICollection, IEnumerable
Inheritance
ColumnCollection
Implements
Inherited Members

Constructors

ColumnCollection()

Initializes a new instance of the ColumnCollection class.

public ColumnCollection()

ColumnCollection(IEnumerable<Column>)

Initializes a new instance of the ColumnCollection class with the specified collection of items.

public ColumnCollection(IEnumerable<Column> columns)

Parameters

columns IEnumerable<Column>

The collection of items to initialize the collection with.

ColumnCollection(int)

Initializes a new instance of the ColumnCollection class with the specified initial capacity.

public ColumnCollection(int capacity)

Parameters

capacity int

The initial number of elements that the collection can contain.