I would like to create a repository model that could take an Expression and use Linq-To-Sql to generate the required SQL statement.

For example, I have a function such as this:

// Possible criteria
Expression<Func<Purchase,bool>> criteria1 = p => p.Price > 1000;

// Function that should take that criteria and convert to SQL statement
static IEnumerable<Customer> GetCustomers (Expression<Func<Purchase,bool>> criteria)
{
   // ...
}

Inside the function, I would like to convert criteria to a SQL statement using Linq-To-Sql.

I am aware that you can use DataContext.Log to see the executed queries and DataContext.GetCommand(query).CommandText to see the full query before it is executed. However, I would like just a part of the entire expression generated.

What I am hoping to accomplish is to make my repository abstract the underlying technology (Linq-to-Sql, Dapper, etc). That way I could pass the Expression to the repository, have it generate the right statement and use the right technology to execute it.

link|improve this question
1  
when you say "just a part" - which part? example? – Marc Gravell Nov 22 '11 at 21:10
The where clause in this case – im_nullable Nov 22 '11 at 21:16
in the general case, though, a query may need more than that. Navigating a child-property could add a join, for example... – Marc Gravell Nov 22 '11 at 21:25
Agreed. I was trying to get a case that works for the WHERE clause, not a general purpose "write any expression and go crazy" -- I'm perfectly happy throwing an exception if the final generated SQL turns out invalid. – im_nullable Nov 22 '11 at 21:29
You could always parse the WHERE clause from the generated query. – Sheridan Nov 23 '11 at 0:21
feedback

1 Answer

You could do something like this:

string sql = DataContext.GetTable<Customer>().Where(criteria).ToString();

ToString() gives you the SQL expression. You could then use regex to pull out the WHERE clause.

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.