Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the elegant way of the soft delete on EntityFramework? I have already identified a property (database field) as deleted and always use this filter on linq statements.

Like

Foo Class  
  int NumberField  
  string Description 
  bool Deleted

contexts.Foos.Where(x=> !x.Deleted);

It is not feasible on complex queries.

I just looked these solutions.. Link 1, Link 2

Any help appreciated..

share|improve this question

3 Answers

up vote 1 down vote accepted

Yes this possible with EF via pattern. If you use a Fascade/repository pattern and access EVERY time via that fascade.

eg an implementation of an interface on ALL repository classes might look like this:

 class MyRepositoryBase<T>....

    public IQueryable<T> ValidQuerySet  // this is not deleted check  Set

    {  get {  return Context.Set<T>().Where(t => t.deleted != true);
           }
    }

You would access exactly as if it was the original DbSet. EF will combine the conditions.

var myQuerySet = MyRespository<T>.ValidQuerySet.Where(t=>t.foo == "bar");
share|improve this answer
how sould i use this pattern with complex queries? like joining 3 tables? – hkutluay Feb 20 at 8:00
If doesnt change that. Send the join on this Iqueryable method. EF will combine it. I use this pattern in our respository base and it works fine. – soadyp Feb 20 at 10:11

Instead of directly querying your context you might want to consider creating repositories over the context class itself (like found on this site). What you'll be able to do then is whenever you're querying for records (such as by using the Filter<T>(Expression<Func<T, bool>> predicate) method of the repository you can always do the following:

return Context.Set<Foo>().Where<Foo>(x => !x.Deleted).Where<Foo>(predicate).AsQueryable<Foo>();

What would be even better is if you were to implement that soft delete in more than one object type and then pull that into an abstract class (call it SoftDeleteable, for example), and so then your Filter method signature could be:

public virtual IQueryable<T> Filter<T>(Expression<Func<T, bool>> predicate) where T : SoftDeletable
share|improve this answer

I find it's very painful to do "soft delete" this way:

  1. you have to remember this flag everywhere when you do data access. Yes, you can wrap it around some repository patter, but you still have it everywhere.
  2. Your table is quickly filled with "deleted" entries, and make reporting, analysis not efficient.

I will suggest you just put hard "Deleted" entries into different table or databases, it will save you time in long run.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.