Class SqlObjectCollection
Represents a collection of SQL schema objects.
public abstract class SqlObjectCollection : ISqlObjectCollection, IReadOnlyCollection<ISqlObject>, IEnumerable<ISqlObject>, IEnumerable
  - Inheritance
 - 
      
      SqlObjectCollection
 
- Implements
 
- Derived
 
- Inherited Members
 
Constructors
SqlObjectCollection(SqlObjectBuilderCollection)
Creates a new SqlObjectCollection instance.
protected SqlObjectCollection(SqlObjectBuilderCollection source)
  Parameters
sourceSqlObjectBuilderCollectionSource collection.
Properties
Count
Gets the number of elements in the collection.
public int Count { get; }
  Property Value
- int
 The number of elements in the collection.
Schema
Schema that this collection belongs to.
public SqlSchema Schema { get; }
  Property Value
Methods
Contains(string)
Checks whether or not an object with the provided name exists.
[Pure]
public bool Contains(string name)
  Parameters
namestringName to check.
Returns
- bool
 true when object exists, otherwise false.
CreateCheck(SqlTable, SqlCheckBuilder)
Creates a new SqlCheck instance.
[Pure]
protected abstract SqlCheck CreateCheck(SqlTable table, SqlCheckBuilder builder)
  Parameters
tableSqlTableTable that this check constraint is attached to.
builderSqlCheckBuilderSource check builder.
Returns
CreateForeignKey(SqlIndex, SqlIndex, SqlForeignKeyBuilder)
Creates a new SqlForeignKey instance.
[Pure]
protected abstract SqlForeignKey CreateForeignKey(SqlIndex originIndex, SqlIndex referencedIndex, SqlForeignKeyBuilder builder)
  Parameters
originIndexSqlIndexSQL index that this foreign key originates from.
referencedIndexSqlIndexSQL index referenced by this foreign key.
builderSqlForeignKeyBuilderSource foreign key builder.
Returns
- SqlForeignKey
 New SqlForeignKey instance.
CreateIndex(SqlTable, SqlIndexBuilder)
Creates a new SqlIndex instance.
[Pure]
protected abstract SqlIndex CreateIndex(SqlTable table, SqlIndexBuilder builder)
  Parameters
tableSqlTableTable that this index belongs to.
builderSqlIndexBuilderSource index builder.
Returns
CreatePrimaryKey(SqlIndex, SqlPrimaryKeyBuilder)
Creates a new SqlPrimaryKey instance.
[Pure]
protected abstract SqlPrimaryKey CreatePrimaryKey(SqlIndex index, SqlPrimaryKeyBuilder builder)
  Parameters
indexSqlIndexUnderlying index that defines this primary key.
builderSqlPrimaryKeyBuilderSource primary key builder.
Returns
- SqlPrimaryKey
 New SqlPrimaryKey instance.
CreateTable(SqlTableBuilder)
Creates a new SqlTable instance.
[Pure]
protected abstract SqlTable CreateTable(SqlTableBuilder builder)
  Parameters
builderSqlTableBuilderSource table builder.
Returns
CreateUnknown(SqlObjectBuilder)
[Pure]
protected virtual SqlObject CreateUnknown(SqlObjectBuilder builder)
  Parameters
builderSqlObjectBuilderSource builder.
Returns
Exceptions
- NotSupportedException
 This method is not supported by default.
CreateView(SqlViewBuilder)
Creates a new SqlView instance.
[Pure]
protected abstract SqlView CreateView(SqlViewBuilder builder)
  Parameters
builderSqlViewBuilderSource view builder.
Returns
DeferCreation(SqlObjectBuilder)
Specifies whether or not an Unknown object's creation should be deferred until all tables and views are created.
[Pure]
protected virtual bool DeferCreation(SqlObjectBuilder builder)
  Parameters
builderSqlObjectBuilderSQL object builder.
Returns
- bool
 true when the
builderis an instance of SqlConstraintBuilder type, otherwise false.
Get(string)
Returns an object with the provided name.
[Pure]
public SqlObject Get(string name)
  Parameters
namestringName of the object to return.
Returns
- SqlObject
 Existing object.
Exceptions
- KeyNotFoundException
 When object does not exist.
GetCheck(string)
Returns a check with the provided name.
[Pure]
public SqlCheck GetCheck(string name)
  Parameters
namestringName of the check to return.
Returns
- SqlCheck
 Existing check.
Exceptions
- KeyNotFoundException
 When check does not exist.
- SqlObjectCastException
 When object exists but is not a check.
GetEnumerator()
Creates a new SqlObjectEnumerator<T> instance for this collection.
[Pure]
public SqlObjectEnumerator<SqlObject> GetEnumerator()
  Returns
- SqlObjectEnumerator<SqlObject>
 New SqlObjectEnumerator<T> instance.
GetForeignKey(string)
Returns a foreign key with the provided name.
[Pure]
public SqlForeignKey GetForeignKey(string name)
  Parameters
namestringName of the foreign key to return.
Returns
- SqlForeignKey
 Existing foreign key.
Exceptions
- KeyNotFoundException
 When foreign key does not exist.
- SqlObjectCastException
 When object exists but is not a foreign key.
GetIndex(string)
Returns an index with the provided name.
[Pure]
public SqlIndex GetIndex(string name)
  Parameters
namestringName of the index to return.
Returns
- SqlIndex
 Existing index.
Exceptions
- KeyNotFoundException
 When index does not exist.
- SqlObjectCastException
 When object exists but is not an index.
GetPrimaryKey(string)
Returns a primary key with the provided name.
[Pure]
public SqlPrimaryKey GetPrimaryKey(string name)
  Parameters
namestringName of the primary key to return.
Returns
- SqlPrimaryKey
 Existing primary key.
Exceptions
- KeyNotFoundException
 When primary key does not exist.
- SqlObjectCastException
 When object exists but is not a primary key.
GetTable(string)
Returns a table with the provided name.
[Pure]
public SqlTable GetTable(string name)
  Parameters
namestringName of the table to return.
Returns
- SqlTable
 Existing table.
Exceptions
- KeyNotFoundException
 When table does not exist.
- SqlObjectCastException
 When object exists but is not a table.
GetView(string)
Returns a view with the provided name.
[Pure]
public SqlView GetView(string name)
  Parameters
namestringName of the view to return.
Returns
- SqlView
 Existing view.
Exceptions
- KeyNotFoundException
 When view does not exist.
- SqlObjectCastException
 When object exists but is not a view.
TryGet(string)
Attempts to return an object with the provided name.
[Pure]
public SqlObject? TryGet(string name)
  Parameters
namestringName of the object to return.
Returns
- SqlObject
 Existing object or null when object does not exist.
TryGetCheck(string)
Attempts to return a check with the provided name.
[Pure]
public SqlCheck? TryGetCheck(string name)
  Parameters
namestringName of the check to return.
Returns
- SqlCheck
 Existing check or null when check does not exist.
TryGetForeignKey(string)
Attempts to return a foreign key with the provided name.
[Pure]
public SqlForeignKey? TryGetForeignKey(string name)
  Parameters
namestringName of the foreign key to return.
Returns
- SqlForeignKey
 Existing foreign key or null when foreign key does not exist.
TryGetIndex(string)
Attempts to return an index with the provided name.
[Pure]
public SqlIndex? TryGetIndex(string name)
  Parameters
namestringName of the index to return.
Returns
- SqlIndex
 Existing index or null when index does not exist.
TryGetPrimaryKey(string)
Attempts to return a primary key with the provided name.
[Pure]
public SqlPrimaryKey? TryGetPrimaryKey(string name)
  Parameters
namestringName of the primary key to return.
Returns
- SqlPrimaryKey
 Existing primary key or null when primary key does not exist.
TryGetTable(string)
Attempts to return a table with the provided name.
[Pure]
public SqlTable? TryGetTable(string name)
  Parameters
namestringName of the table to return.
Returns
- SqlTable
 Existing table or null when table does not exist.
TryGetView(string)
Attempts to return a view with the provided name.
[Pure]
public SqlView? TryGetView(string name)
  Parameters
namestringName of the view to return.
Returns
- SqlView
 Existing view or null when view does not exist.