Click or drag to resize
CustomTableItemProvider.GetItems Method (String, String, String, Int32, String)
Returns the query of all data record for given custom table filtered out by where condition and ordered by given expression.

Namespace: CMS.CustomTables
Assembly: CMS.CustomTables (in CMS.CustomTables.dll) Version: 13.0.131
Syntax
C#
public static ObjectQuery<CustomTableItem> GetItems(
	string className,
	string where,
	string orderBy = null,
	int topN = 0,
	string columns = null
)

Parameters

className
Type: System.String
Class name
where
Type: System.String
Where condition
orderBy (Optional)
Type: System.String
Order by expression
topN (Optional)
Type: System.Int32
Top N items
columns (Optional)
Type: System.String
Columns to select, null or empty returns all columns

Return Value

Type: ObjectQuery<CustomTableItem>
See Also