Base solution for your next web application
Open Closed

Un-Delete an entity #1253


User avatar
0
joe704la created

Is there any way to undelete a soft delete. I tried doing it by first finding something that was soft deleted and then doing an update on it to undelete it. But I am guessing the IRepository is not going to find anything that is Soft deleted. Is that true? Every time I do a FindFirstOrDefault on something that is soft deleted it never finds it.


2 Answer(s)
  • User Avatar
    0
    hikalkan created
    Support Team

    You can disable SoftDelete filter to get deleted entities: <a class="postlink" href="http://www.aspnetboilerplate.com/Pages/Documents/Data-Filters#DocDisableFilters">http://www.aspnetboilerplate.com/Pages/ ... bleFilters</a>

  • User Avatar
    0
    joe704la created

    Perfect thanks