Show / Hide Table of Contents

Interface IColumnDescriptor

Provides an interface to describe a database column.

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

Properties

| Improve this Doc View Source

ColumnName

Gets the name of the column.

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

DataType

Gets the type of the data.

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

IsForeignKey

Indicates if the column is part of a foreign key.

Declaration
bool IsForeignKey { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsIdentity

Indicates if the column is an identity.

Declaration
bool IsIdentity { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsPrimaryKey

Indicates if the column is part of a primary key.

Declaration
bool IsPrimaryKey { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsUniqueKey

Indicates if the column is part of a unique key.

Declaration
bool IsUniqueKey { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

MaxSize

Gets the maximum size.

Declaration
long MaxSize { get; }
Property Value
Type Description
System.Int64
| Improve this Doc View Source

Precision

Gets the numeric precision.

Declaration
byte Precision { get; }
Property Value
Type Description
System.Byte
| Improve this Doc View Source

Scale

Gets the numeric scale.

Declaration
byte Scale { get; }
Property Value
Type Description
System.Byte

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)
  • Improve this Doc
  • View Source
Powered by MiracleDevs ©2017. Code licensed under the MIT License.
Documentation generated by DocFX.