PRELIMINARY INFORMATION - SUBJECT TO CHANGE
This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Returns a datatable with a single column, containing all the distinct values in the column.

Namespace: Smartsite.Runtime.Modules
Assembly:  Smartsite.Runtime.Modules (in Smartsite.Runtime.Modules.dll)

Syntax

C#Copy imageCopy Code
[]
public static  Distinct(
	 dataTable,
	string columnName
)
Visual Basic (Declaration)Copy imageCopy Code
<> _
Public Shared Function Distinct ( _
	dataTable As , _
	columnName As  _
) As 

Parameters

dataTable
SXMLDataTable
The datatable in which this viper will search for distinct values.
columnName
String
The name of the column in which this viper will collect all dinstinct values.

Return Value

Returns a datatable with all dinstinct values found in the specified column of the datatable.

See Also

Advanced