Type of the entity to be filtered.
Type of the linked entity which is used in the filter.
Creates an instance of FilterLink
.
Linked entity to be used in the filter.
List of filterables for the linked entity.
Entity type of the entity tp be filtered.
Constructor type of the entity to be filtered.
Linked entity to be filtered by.
Copyright Ⓒ 2023 SAP SE or an SAP affiliate company. All rights reserved.
Data structure to represent filter on properties of a navigation property (link). In OData v2 filtering for navigation properties is ONLY supported for properties with a one-to-one cardinality (OneToOneLink).
Example: In the following filter statement
Entity.requestBuilder().filter(Entity.to_NavProperty.filter(LinkedEntity.property.equals(value)))
,Entity.to_NavProperty.filter(LinkedEntity.property.equals(value))
is aFilterLink
.In OData v4 filtering is also possible on one-to-many links. See OneToManyLink.