Show / Hide Table of Contents

Interface ITableDescriptor

Provides an interface to describe a database table.

Namespace: Paradigm.ORM.Data.Descriptors
Assembly: Paradigm.ORM.Data.dll
Syntax
public interface ITableDescriptor

Properties

| Improve this Doc View Source

AllColumns

Gets a list of all the columns.

Declaration
List<IColumnDescriptor> AllColumns { get; }
Property Value
Type Description
List<IColumnDescriptor>
| Improve this Doc View Source

CatalogName

Gets the name of the database catalog.

Declaration
string CatalogName { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IdentityColumn

Gets the identity column descriptor.

Declaration
IColumnDescriptor IdentityColumn { get; }
Property Value
Type Description
IColumnDescriptor
| Improve this Doc View Source

PrimaryKeyColumns

Gets a list of column descriptors for all the primary keys.

Declaration
List<IColumnDescriptor> PrimaryKeyColumns { get; }
Property Value
Type Description
List<IColumnDescriptor>
| Improve this Doc View Source

SchemaName

Gets the name of the database schema.

Declaration
string SchemaName { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

SimpleColumns

Gets a list of all the columns that aren't identities.

Declaration
List<IColumnDescriptor> SimpleColumns { get; }
Property Value
Type Description
List<IColumnDescriptor>
Remarks

Simple columns does not include the identity properties but will contain the primary keys.

| Improve this Doc View Source

TableName

Gets the name of the table.

Declaration
string TableName { get; }
Property Value
Type Description
System.String

Extension Methods

ObjectExtensions.ThrowIfFails<TException>(Object, Action, String)
ObjectExtensions.ThrowIfFails<TException, TResult>(Object, Func<TResult>, String)
ObjectExtensions.ThrowIfFailsAsync<TException>(Object, Func<Task>, String)
ObjectExtensions.ThrowIfFailsAsync<TException, TResult>(Object, Func<Task<TResult>>, String)

See Also

IColumnPropertyDescriptorCollection
  • Improve this Doc
  • View Source
Powered by MiracleDevs ©2017. Code licensed under the MIT License.
Documentation generated by DocFX.