Class View
The class represents a database view
Inheritance
System.Object
View
Assembly: Albatross.Database.dll
Syntax
public class View : IDatabaseObject
Properties
|
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
|
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
|
Improve this Doc
View Source
Schema
Declaration
public string Schema { get; set; }
Property Value
Type |
Description |
System.String |
|
Implements