Show / Hide Table of Contents

Class Column

A Table or View column

Inheritance
System.Object
Column
Namespace: Albatross.Database
Assembly: Albatross.Database.dll
Syntax
public class Column

Properties

| Improve this Doc View Source

IsComputed

If this is a computed column

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

IsFilestream

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

IsIdentity

If this is an identity column

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

IsNullable

If the column can be null

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

Name

Column Name

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

OrdinalPosition

The ordinal position of the column within the table or view

Declaration
public int OrdinalPosition { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Type

Column Type

Declaration
public SqlType Type { get; set; }
Property Value
Type Description
SqlType
  • Improve this Doc
  • View Source
Back to top Copyright © 2018