Show / Hide Table of Contents

Class Table

The class represents a database table

Inheritance
System.Object
Table
Implements
IDatabaseObject
Namespace: Albatross.Database
Assembly: Albatross.Database.dll
Syntax
public class Table : IDatabaseObject

Properties

| Improve this Doc View Source

Columns

Declaration
public IEnumerable<Column> Columns { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<Column>
| Improve this Doc View Source

Created

Declaration
public DateTime Created { get; set; }
Property Value
Type Description
System.DateTime
| Improve this Doc View Source

Database

Declaration
public Database Database { get; set; }
Property Value
Type Description
Database
| Improve this Doc View Source

IdentityColumn

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

Modified

Declaration
public DateTime Modified { get; set; }
Property Value
Type Description
System.DateTime
| Improve this Doc View Source

Name

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

Permissions

Declaration
public IEnumerable<DatabasePermission> Permissions { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<DatabasePermission>
| Improve this Doc View Source

PrimaryKeys

Declaration
public IEnumerable<IndexColumn> PrimaryKeys { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<IndexColumn>
| Improve this Doc View Source

Schema

Declaration
public string Schema { get; set; }
Property Value
Type Description
System.String

Implements

IDatabaseObject
  • Improve this Doc
  • View Source
Back to top Copyright © 2018