Returns an entity collection with poll answers for a specific poll id.

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

Syntax

C#
EntityCollection<PollAnswerEntity> GetPollAnswers(
	Guid pollId
)
Visual Basic
Function GetPollAnswers ( 
	pollId As Guid
) As EntityCollection(Of PollAnswerEntity)
Visual C++
EntityCollection<PollAnswerEntity^>^ GetPollAnswers(
	Guid pollId
)
F#
abstract GetPollAnswers : 
        pollId : Guid -> EntityCollection<PollAnswerEntity> 

Parameters

pollId
Type: System..::..Guid
Poll ID

Return Value

Type: EntityCollection<(Of <(<'PollAnswerEntity>)>)>
EntityCollection with all poll answers

See Also