Title here
Summary here
Creates or alters a view.
CreateViewTask.CreateOrAlter("viewname","SELECT value FROM table");
Type | Name | Description |
---|---|---|
string | viewName | |
string | definition |
The view definition.
Type | Description |
---|---|
string |
The sql that is generated to create the view
Type | Description |
---|---|
string |
The formatted name of the view
Type | Description |
---|---|
ObjectNameDescriptor |
Optional, will set the view attributes, e.g. "WITH SCHEMABINDING". This part is put after the CREATE VIEW [viewname] statement and before the AS statement.
Type | Description |
---|---|
string |
The name of the view
Type | Description |
---|---|
string |
Creates or alter a view.
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | The connection manager of the database you want to connect |
string | viewName | The name of the view |
string | definition | The view definition |
Creates or alter a view.
Type | Name | Description |
---|---|---|
string | viewName | The name of the view |
string | definition | The view definition |