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

Consider this LINQ To SQL query. It's intention is to take a string[] of search terms and apply the terms to a bunch of different fields on the SQL table:

string[] searchTerms = new string[] {"hello","world","foo"};
List<Cust> = db.Custs.Where(c => 
   searchTerms.Any(st => st.Equals(c.Email))
|| searchTerms.Any(st => st.Equals(c.FirstName))
|| searchTerms.Any(st => st.Equals(c.LastName))
|| searchTerms.Any(st => st.Equals(c.City))
|| searchTerms.Any(st => st.Equals(c.Postal))
|| searchTerms.Any(st => st.Equals(c.Phone))
|| searchTerms.Any(st => c.AddressLine1.Contains(st))
)
.ToList();

An exception is raised:

Local sequence cannot be used in LINQ to SQL implementation of query operators except the Contains() operator

Question: Why is this exception raised, and how can the query be rewritten to avoid this exception?

share|improve this question

3 Answers

up vote 19 down vote accepted

Replace the usages of Any with Contains in your query. eg:

searchTerms.Contains(c.Email)

This should get the result you're looking for. It looks backwards, but it's correct- it'll generate an IN operator for each field inside a Contains with all the elements in searchTerms.

The AddressLine1 part won't work this way- you'll have to loop-generate the comparisons yourself with

c.addressLine1.Contains(...)

Something like PredicateBuilder can be helpful for this.

share|improve this answer
@nitzmahone: thanks, will check out PredicateBuilder, it looks promising! – p.campbell Nov 11 '09 at 1:54
I would be concerned that the awesomeness of PredicateBuilder will disappoint in a LinqToSql implementation as some of the conditions may not be implemented by the LinqToSql provider (the exact problem you describe in your question). – cottsak Nov 11 '09 at 20:03
+1 for the .Contains() - generally a good replacement for equations that are not supported by LinqToSql. Caution is advised with PredicateBuilder even being an option. – cottsak Nov 11 '09 at 20:06
I use PredicateBuilder all the time, almost exclusively with Linq to SQL. Huge time saver and pretty much the only way to do OR'd dynamic searches like this when the column list is variable (ie, "advanced search"). – Matt Davis Nov 11 '09 at 22:09

Just a thought (not directly related to the question, but it might help other viewers):

I was getting the same error message as you, even though I was using the Contains() method correctly, and it took me quite a while to figure out that the root of my problem was returning an IEnumerable to something that needed to further filter the results of the L2S query. Once I changed the function's return type to an IQueryable, the problem went away. It makes sense, seeing that an IEnumerable can't be further filtered, but an IQueryable can.

share|improve this answer

I had a query with this error, despite not using any comparers other than ==. I dumped a superset of the results into a list and pointed the query at that. Solved.

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.