0
ramezani583 created
1 Answer(s)
-
0
From the documentation on Data Filters:
You can disable a filter per unit of work by calling DisableFilter method as shown below:
using (_unitOfWorkManager.Current.DisableFilter(AbpDataFilters.SoftDelete)) { var people2 = _personRepository.GetAllList(); }
people2 will also include deleted people.