Class Procedure
The class represents a database stored procedure
Inheritance
System.Object
Procedure
Assembly: Albatross.Database.dll
Syntax
public class Procedure : IDatabaseObject
Properties
|
Improve this Doc
View Source
AlterScript
Declaration
public string AlterScript { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Created
Declaration
public DateTime Created { get; set; }
Property Value
Type |
Description |
System.DateTime |
|
|
Improve this Doc
View Source
CreateScript
Declaration
public string CreateScript { get; set; }
Property Value
Type |
Description |
System.String |
|
|
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
Parameters
Declaration
public IEnumerable<Parameter> Parameters { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<Parameter> |
|
|
Improve this Doc
View Source
Permissions
Declaration
public IEnumerable<DatabasePermission> Permissions { get; set; }
Property Value
|
Improve this Doc
View Source
PermissionScript
Declaration
public string PermissionScript { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Schema
Declaration
public string Schema { get; set; }
Property Value
Type |
Description |
System.String |
|
Implements