vote up 2 vote down star
1

I'm using logical delete in my system and would like to have every call made to the database filtered automatically.

Let say that I'm loading data from the database in the following way :

product.Regions

How could I filter every request made since Regions is an EntitySet<Region> and not a custom method thus not allowing me to add isDeleted = 0

So far I found AssociateWith but I'd hate to have to write a line of code for each Table -> Association of the current project...

I'm looking into either building generic lambda Expressions or.. something else?

flag
I hope you find an answer. I can't recall how often I've written ".Where(i => i.IsVisible)" :p – JustLoren Sep 29 at 17:59
1  
Although this might not help at all - doing this in NHibernate is fairly simple using either filters or where condition in your mapping... – Rashack Oct 2 at 7:38
+1 for you comment for reminding me that Linq to SQL is not the ONLY OR/M aand that sometimes the solution is not so easily obtained ;) – Mathlec Oct 2 at 11:45

1 Answer

vote up 0 vote down

It looks to me like you're using a relationship between your Product and Region classes. If so, then somewhere, (the .dbml file for auto-generated LINQ-to-SQL), there exists a mapping that defines the relationship:

[Table(Name = "Product")]
public partial class Product
{
    ...
    private EntitySet<Region> _Regions;
    [Association(Storage = "_Regions")]
    public EntitySet<Region> Regions
    {
        get { return this._Regions; }
        set { this._Regions.Assign(value); }
    }
    ...
}

You could put some logic in the accessor here, for example:

public IEnumerable<Region> Regions
{
    get { return this._Regions.Where(r => !r.isDeleted); }
    set { this._Regions.Assign(value); }
}

This way every access through product.Regions will return your filtered Enumerable.

link|flag
I do have relation between my entites in my DBML. Your idea is a good one but I'll have to add those "filters" manually for EACH relations!! I'm looking into something more...generic. – Mathlec Sep 30 at 1:20
And btw, this._Regions.Where will return an IEnumerable and not an EntitySet. – Mathlec Oct 1 at 19:39

Your Answer

Get an OpenID
or

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