diff --git a/src/main/java/com/avaje/ebean/Query.java b/src/main/java/com/avaje/ebean/Query.java index f8046524c..4018687bc 100644 --- a/src/main/java/com/avaje/ebean/Query.java +++ b/src/main/java/com/avaje/ebean/Query.java @@ -378,6 +378,12 @@ public interface Query { /** * Execute the query including soft deleted rows. + *

+ * This means that Ebean will not add any predicates to the query for filtering out + * soft deleted rows. You can still add your own predicates for the deleted properties + * and effectively you have full control over the query to include or exclude soft deleted + * rows as needed for a given use case. + *

*/ Query setIncludeSoftDeletes();