Fetch the topic last posts.

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

Syntax

C#
protected virtual EntityCollection<SnDiscussionMessageEntity> FetchTopicLastPosts(
	List<Guid> topicIds
)
Visual Basic
Protected Overridable Function FetchTopicLastPosts ( 
	topicIds As List(Of Guid)
) As EntityCollection(Of SnDiscussionMessageEntity)
Visual C++
protected:
virtual EntityCollection<SnDiscussionMessageEntity^>^ FetchTopicLastPosts(
	List<Guid>^ topicIds
)
F#
abstract FetchTopicLastPosts : 
        topicIds : List<Guid> -> EntityCollection<SnDiscussionMessageEntity> 
override FetchTopicLastPosts : 
        topicIds : List<Guid> -> EntityCollection<SnDiscussionMessageEntity> 

Parameters

topicIds
Type: System.Collections.Generic..::..List<(Of <(<'Guid>)>)>
Topic ids

Return Value

Type: EntityCollection<(Of <(<'SnDiscussionMessageEntity>)>)>
Last posts

See Also