up vote 0 down vote favorite
share [g+] share [fb]

Starting with this code:

int Count(Func<MyClass, bool> conditions)
{
    // ...
}

And I want to call it like so:

int c = Count(foo => foo.bar == 5 && !foo.blah);

How do I then write the count function so that it ends up like so:

int Count(Func<MyClass, bool> conditions)
{
    // what goes here so that I get this:
    string sql = "SELECT COUNT(*) FROM [MyClass] WHERE [Bar] = 5 AND [Blah] = 0"
    // ... execute the sql etc.
}

For the purposes of this discussion, assume that I have already considered and rejected using LINQ to SQL or LINQ to Entities. Not looking for a pre-existing solution but an understanding of how this is done.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

I think what you are looking for is something like this. These are a series of articles that explain how to build a LINQ provider from scratch.

link|improve this answer
Exactly what I needed, thanks! – Nathan Ridley Jun 10 '09 at 10:19
feedback

Your best bet is probably the series of posts on Matt Warren's blog about building a Custom IQueryable provider.

link|improve this answer
feedback

Matt Warren covers this extensively in his "Building an IQueryable provider" series.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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