Click or drag to resize
TableManager.CreateView Method
Creates specified view in database

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 10.0.0
Syntax
C#
public void CreateView(
	string viewName,
	string selectExpression,
	bool indexed = false,
	string schema = null
)

Parameters

viewName
Type: System.String
View name to create
selectExpression
Type: System.String
Select expression for the view
indexed (Optional)
Type: System.Boolean
If true, the view is indexed (schema bound)
schema (Optional)
Type: System.String
Schema of the indexed view
See Also