-
Notifications
You must be signed in to change notification settings - Fork 1
SpecJoin
Fagner Lima edited this page Aug 24, 2020
·
1 revision
Used for indicate a join query.
Example:
@SpecEntity(Task.class)
public class TaskFilter implements Serializable {
// ...
@SpecJoin
@SpecField("tags.id")
private Long tagId;
@SpecJoin
@SpecField(value = "tags.description", operation = SpecOperation.LIKE_IGNORE_CASE)
private Long tagDescription;
// getters and setters
}