Click or drag to resize
QueryColumnListAdd Method (String)
Adds one QueryColumn into list, regardless of existing columns. QueryColumn added to the list is created via FromExpression(String).

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 12.0.0
Syntax
C#
public void Add(
	string column
)

Parameters

column
Type: SystemString
String representation of column
Exceptions
ExceptionCondition
ArgumentExceptionOnly one column should be passed as argument
Examples

"A, B, C" will result in exception

"A as B", "A" or "5 as B" are accepted

See Also