Click or drag to resize
ForumPostInfoProvider.SelectForumPostsInternal Method (Int32, String, String, String, Int32, Boolean, Int32, String, Int32, Int32, Int32)
Returns the DataSet of forum posts in specified subtree of forum posts.

Namespace: CMS.Forums
Assembly: CMS.Forums (in CMS.Forums.dll) Version: 8.2.23
Syntax
C#
protected virtual InfoDataSet<ForumPostInfo> SelectForumPostsInternal(
	int forumId,
	string path,
	string whereCondition,
	string orderBy,
	int maxRelativeLevel,
	bool selectOnlyApproved,
	int topN,
	string columns,
	int offset,
	int maxRecords,
	ref int totalRecords
)

Parameters

forumId
Type: System.Int32
Forum ID
path
Type: System.String
Posts path
whereCondition
Type: System.String
Where condition
orderBy
Type: System.String
Order specification
maxRelativeLevel
Type: System.Int32
Maximal relative level
selectOnlyApproved
Type: System.Boolean
Select only approved posts
topN
Type: System.Int32
Select TOP N posts
columns
Type: System.String
List of columns which should be selected
offset
Type: System.Int32
Index of first record to get
maxRecords
Type: System.Int32
Maximum number of records to get. If maxRecords is zero or less, all records are returned (no paging is used)
totalRecords
Type: System.Int32
Returns total number of the records

Return Value

Type: InfoDataSet<ForumPostInfo>
See Also