mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#627 - Rename Query.includeSoftDeletes() to Query.setIncludeSoftDeletes()
This commit is contained in:
@@ -358,6 +358,11 @@ public class DefaultOrmQuery<T> implements SpiQuery<T> {
|
||||
|
||||
@Override
|
||||
public Query<T> includeSoftDeletes() {
|
||||
return setIncludeSoftDeletes();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Query<T> setIncludeSoftDeletes() {
|
||||
this.temporalMode = TemporalMode.SOFT_DELETED;
|
||||
return this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user