Class Column
Inheritance
System.Object
Column
Namespace: Albatross.Database
Assembly: Albatross.Database.dll
Syntax
public class Column
Properties
| Improve this Doc View SourceIsComputed
If this is a computed column
Declaration
public bool IsComputed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsFilestream
Declaration
public bool IsFilestream { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsIdentity
If this is an identity column
Declaration
public bool IsIdentity { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsNullable
If the column can be null
Declaration
public bool IsNullable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Column Name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OrdinalPosition
The ordinal position of the column within the table or view
Declaration
public int OrdinalPosition { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Type
Column Type
Declaration
public SqlType Type { get; set; }
Property Value
Type | Description |
---|---|
SqlType |