Gets the hot discussion board topics.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual EntityCollection<SnDiscussionTopicEntity> GetHotTopics(
	Nullable<Guid> boardId,
	Nullable<Guid> groupId,
	string searchPhrase,
	IRelationPredicateBucket filter,
	ISortExpression sorter,
	int pageSize,
	int pageIndex,
	out int recordCount
)
Visual Basic
Public Overridable Function GetHotTopics ( 
	boardId As Nullable(Of Guid),
	groupId As Nullable(Of Guid),
	searchPhrase As String,
	filter As IRelationPredicateBucket,
	sorter As ISortExpression,
	pageSize As Integer,
	pageIndex As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of SnDiscussionTopicEntity)
Visual C++
public:
virtual EntityCollection<SnDiscussionTopicEntity^>^ GetHotTopics(
	Nullable<Guid> boardId, 
	Nullable<Guid> groupId, 
	String^ searchPhrase, 
	IRelationPredicateBucket^ filter, 
	ISortExpression^ sorter, 
	int pageSize, 
	int pageIndex, 
	[OutAttribute] int% recordCount
)
F#
abstract GetHotTopics : 
        boardId : Nullable<Guid> * 
        groupId : Nullable<Guid> * 
        searchPhrase : string * 
        filter : IRelationPredicateBucket * 
        sorter : ISortExpression * 
        pageSize : int * 
        pageIndex : int * 
        recordCount : int byref -> EntityCollection<SnDiscussionTopicEntity> 
override GetHotTopics : 
        boardId : Nullable<Guid> * 
        groupId : Nullable<Guid> * 
        searchPhrase : string * 
        filter : IRelationPredicateBucket * 
        sorter : ISortExpression * 
        pageSize : int * 
        pageIndex : int * 
        recordCount : int byref -> EntityCollection<SnDiscussionTopicEntity> 

Parameters

boardId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Board id.
groupId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Group id.
searchPhrase
Type: System..::..String
Search phrase
filter
Type: IRelationPredicateBucket
Filter bucket
sorter
Type: ISortExpression
Sort expression
pageSize
Type: System..::..Int32
Page size
pageIndex
Type: System..::..Int32
Page index
recordCount
Type: System..::..Int32%
Total number of elements

Return Value

Type: EntityCollection<(Of <(<'SnDiscussionTopicEntity>)>)>
Collection of hot discussion board topic elements

Implements

IDiscussionBLL..::..GetHotTopics(Nullable<(Of <<'(Guid>)>>), Nullable<(Of <<'(Guid>)>>), String, IRelationPredicateBucket, ISortExpression, Int32, Int32, Int32%)

See Also