Returns all page localization entities from a currently active portal (filter on ApplicationId field).

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

Syntax

C#
public virtual EntityCollection<PageLocalizationEntity> GetAllPageLocalizations(
	IRelationPredicateBucket filter,
	bool fullPrefetchPath
)
Visual Basic
Public Overridable Function GetAllPageLocalizations ( 
	filter As IRelationPredicateBucket,
	fullPrefetchPath As Boolean
) As EntityCollection(Of PageLocalizationEntity)
Visual C++
public:
virtual EntityCollection<PageLocalizationEntity^>^ GetAllPageLocalizations(
	IRelationPredicateBucket^ filter, 
	bool fullPrefetchPath
)
F#
abstract GetAllPageLocalizations : 
        filter : IRelationPredicateBucket * 
        fullPrefetchPath : bool -> EntityCollection<PageLocalizationEntity> 
override GetAllPageLocalizations : 
        filter : IRelationPredicateBucket * 
        fullPrefetchPath : bool -> EntityCollection<PageLocalizationEntity> 

Parameters

filter
Type: IRelationPredicateBucket
Custom filter
fullPrefetchPath
Type: System..::..Boolean
Include full prefetch

Return Value

Type: EntityCollection<(Of <(<'PageLocalizationEntity>)>)>
Collection of all page localizations.

Implements

IPageRepository..::..GetAllPageLocalizations(IRelationPredicateBucket, Boolean)

See Also