We're working on a Log Viewer. The use will have the option to filter by user, severity, etc. In the Sql days I'd add to the query string, but I want to do it with Linq. How can I conditionally add where-clauses?
|
feedback
|
|
if you want to only filter if certain criteria is passed, do something like this
Doing so this way will allow your Expression tree to be exactly what you want. That way the SQL created will be exactly what you need and nothing less. | |||||
feedback
|
|
I ended using an answer similar to Daren's, but with an IQueryable interface:
That builds up the query before hitting the database. The command won't run until .ToList() at the end. | |||||
feedback
|
|
When it comes to conditional linq, I am very fond of the filters and pipes pattern. Basically you create an extension method for each filter case that takes in the IQueryable and a parameter.
| |||
|
feedback
|
|
Another option would be to use something like the PredicateBuilder discussed here. It allows you to write code like the following:
Note that I've only got this to work with Linq 2 SQL. EntityFramework does not implement Expression.Invoke, which is required for this method to work. I have a question regarding this issue here. | |||
|
feedback
|
|
I had a similar requirement recently and eventually found this in he MSDN. CSharp Samples for Visual Studio 2008 The classes included in the DynamicQuery sample of the download allow you to create dynamic queries at runtime in the following format:
Using this you can build a query string dynamically at runtime and pass it into the Where() method:
| |||
|
feedback
|
|
If you need to filter base on a List / Array use the following:
| |||
|
feedback
|
|
Just use C#'s && operator:
Edit: Ah, need to read more carefully. You wanted to know how to conditionally add additional clauses. In that case, I have no idea. :) What I'd probably do is just prepare several queries, and execute the right one, depending on what I ended up needing. | |||
|
feedback
|
|
You could use an external method:
This would work, but can't be broken down into expression trees, which means Linq to SQL would run the check code against every record. Alternatively:
That might work in expression trees, meaning Linq to SQL would be optimised. | ||||
|
feedback
|
|
Well, what I thought was you could put the filter conditions into a generic list of Predicates:
That results in a list containing "me", "meyou", and "mow". You could optimize that by doing the foreach with the predicates in a totally different function that ORs all the predicates. | |||
|
feedback
|
|
It isn't the prettiest thing but you can use a lambda expression and pass your conditions optionally. In TSQL I do a lot of the following to make parameters optional:
You could duplicate the same style with a the following lambda (an example of checking authentication):
| |||
|
feedback
|
|
Doing this:
having this in the
means that when the final query is created, if | ||||
|
feedback
|