Constructs an entity type filter for a given parent id and entity type.

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

Syntax

C#
RelationPredicateBucket ConstructSnEntityTypeFilter(
	int entityType,
	RelationPredicateBucket filter,
	params Guid[] parentIds
)
Visual Basic
Function ConstructSnEntityTypeFilter ( 
	entityType As Integer,
	filter As RelationPredicateBucket,
	ParamArray parentIds As Guid()
) As RelationPredicateBucket
Visual C++
RelationPredicateBucket^ ConstructSnEntityTypeFilter(
	int entityType, 
	RelationPredicateBucket^ filter, 
	... array<Guid>^ parentIds
)
F#
abstract ConstructSnEntityTypeFilter : 
        entityType : int * 
        filter : RelationPredicateBucket * 
        parentIds : Guid[] -> RelationPredicateBucket 

Parameters

entityType
Type: System..::..Int32
Entity type.
filter
Type: RelationPredicateBucket
Filter bucket.
parentIds
Type: array<System..::..Guid>[]()[][]
Parent Ids.

Return Value

Type: RelationPredicateBucket
Filter for a paricular parent id/entity type combination.

See Also