From 2bb39b02d064f7374f391ac35656cde757acb824 Mon Sep 17 00:00:00 2001 From: Robin Bygrave Date: Mon, 9 May 2016 10:00:37 +1200 Subject: [PATCH] No effective change - javadoc on Query.setIncludeSoftDeletes() --- src/main/java/com/avaje/ebean/Query.java | 6 ++++++ 1 file changed, 6 insertions(+) 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();