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#
public virtual RelationPredicateBucket ConstructSnEntityTypeFilter(
	Guid parentId,
	int entityType,
	RelationPredicateBucket filter,
	bool negate
)
Visual Basic
Public Overridable Function ConstructSnEntityTypeFilter ( 
	parentId As Guid,
	entityType As Integer,
	filter As RelationPredicateBucket,
	negate As Boolean
) As RelationPredicateBucket
Visual C++
public:
virtual RelationPredicateBucket^ ConstructSnEntityTypeFilter(
	Guid parentId, 
	int entityType, 
	RelationPredicateBucket^ filter, 
	bool negate
)
F#
abstract ConstructSnEntityTypeFilter : 
        parentId : Guid * 
        entityType : int * 
        filter : RelationPredicateBucket * 
        negate : bool -> RelationPredicateBucket 
override ConstructSnEntityTypeFilter : 
        parentId : Guid * 
        entityType : int * 
        filter : RelationPredicateBucket * 
        negate : bool -> RelationPredicateBucket 

Parameters

parentId
Type: System..::..Guid
Parent id.
entityType
Type: System..::..Int32
Entity type.
filter
Type: RelationPredicateBucket
Filter bucket.
negate
Type: System..::..Boolean
Apply not equal to predicate.

Return Value

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

Implements

IRelationshipRepository..::..ConstructSnEntityTypeFilter(Guid, Int32, RelationPredicateBucket, Boolean)

See Also