ObjectReferenceFilterTReferencingObjectType Method |
Returns expression that filters the referencing objects for specific referenced id
Namespace:
Aloe.SystemFrameworks.Domain
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic abstract Expression<Func<TReferencingObjectType, bool>> Filter<TReferencingObjectType>(
EntityObject referencedObject
)
where TReferencingObjectType : DomainObject
Public MustOverride Function Filter(Of TReferencingObjectType As DomainObject) (
referencedObject As EntityObject
) As Expression(Of Func(Of TReferencingObjectType, Boolean))
public:
generic<typename TReferencingObjectType>
where TReferencingObjectType : DomainObject
virtual Expression<Func<TReferencingObjectType, bool>^>^ Filter(
EntityObject^ referencedObject
) abstract
abstract Filter :
referencedObject : EntityObject -> Expression<Func<'TReferencingObjectType, bool>> when 'TReferencingObjectType : DomainObject
Parameters
- referencedObject
- Type: Aloe.SystemFrameworks.DomainEntityObject
The id of the one object on which to filter the referencing objects
Type Parameters
- TReferencingObjectType
- The type of the referencing objects (the many side)
Return Value
Type:
ExpressionFuncTReferencingObjectType,
BooleanExpression, that filters the referencing objects (filters the many side)
See Also