Gets the rating collection for parent entity.

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

Syntax

C#
EntityCollection<SnRatingEntity> GetRatingCollection(
	Guid parentEntityId,
	int parentEntityType,
	bool fullPrefetch,
	int maxNumberOfItemsToReturn
)
Visual Basic
Function GetRatingCollection ( 
	parentEntityId As Guid,
	parentEntityType As Integer,
	fullPrefetch As Boolean,
	maxNumberOfItemsToReturn As Integer
) As EntityCollection(Of SnRatingEntity)
Visual C++
EntityCollection<SnRatingEntity^>^ GetRatingCollection(
	Guid parentEntityId, 
	int parentEntityType, 
	bool fullPrefetch, 
	int maxNumberOfItemsToReturn
)
F#
abstract GetRatingCollection : 
        parentEntityId : Guid * 
        parentEntityType : int * 
        fullPrefetch : bool * 
        maxNumberOfItemsToReturn : int -> EntityCollection<SnRatingEntity> 

Parameters

parentEntityId
Type: System..::..Guid
Parent entity id
parentEntityType
Type: System..::..Int32
Parent entity type
fullPrefetch
Type: System..::..Boolean
Include full prefetch path
maxNumberOfItemsToReturn
Type: System..::..Int32
Maximum number of items to return

Return Value

Type: EntityCollection<(Of <(<'SnRatingEntity>)>)>
Rating collection

See Also