Type of the entity to be linked from
Type of the entity to be linked to
Creates an instance of Link.
Name of the linking field to be used in the OData request.
Constructor type of the entity the field belongs to
Constructor type of the linked entity
Constructor type of the entity the field belongs to
Name of the linking field to be used in the OData request.
Filterables to apply to the given entity based on the linked entity.
Constructor type of the linked entity
List of criteria of the linked entity to order the given entity by with descending priority.
List of selectables on the linked entity.
Create filter statements to be applied to the OData request based on the linked entity values.
Filters based on the linked entity
Newly created Filterlink
Create order statements for the OData request based on the linked entity. The given statements have descending priority.
Example:
Entity.requestBuilder()
.getAll()
.orderBy(Entity.TO_LINKED_ENTITY.orderBy(asc(LinkedEntity.PROPERTY1), desc(LinkedEntity.PROPERTY2)));
Criteria to order by
Newly created order link
Creates a selection on a linked entity. Has the same behavior as GetAllRequestBuilder.select and GetByKeyRequestBuilder.select but for linked entities.
See also, Selectable
Selection of fields or links on a linked entity
The link itself, to facilitate method chaining
Create a new one to one link based on a given link.
Type of the entity to be linked from
Type of the entity to be linked to
Link to be cloned
Newly created link
Represents a link from one entity to one other linked entity (as opposed to a list of linked entities). In OData v2 a
OneToOneLink
can be used to filter and order a selection on an entity based on filters and orders on a linked entity.