Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
LINQ2SQL: Cannot convert IQueryable<> to IOrderedQueryable error

I having this error in the searchString of my controller..

here is my codes:

if (!String.IsNullOrEmpty(searchString))
{ 
    posts = posts.Where(post => post.Body == searchString);
}

I'm using this codes for my search in my Index. Did I declare something wrong here or something? I already tried googling but didn't find a clear answer. Thanks in advance for anyone who could help me..

share|improve this question
What is post and how did you declare/use it ? – V4Vendetta Jan 9 at 4:35
1  
This thread looks similar: stackoverflow.com/questions/1732236/… What datatype is posts? Where did it come from? Are you doing any sorting (orderby) on it anywhere? – JLRishe Jan 9 at 4:36

marked as duplicate by pst, Eric J., Luc Touraille, Lafada, Anders R. Bystrup Jan 9 at 8:44

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 9 down vote accepted

The most likely cause is that you used an implicit var declaration for posts in a query that has an OrderBy. If you replace it with

IQueryable<Post> posts = someSource.Where(cond).OrderBy(/*the culprit*/);

the error should go away.

share|improve this answer
whoa.. Yeah you're right dude.. Your answer works perfectly for me. It works.. Thanks :).. !! – bot Jan 9 at 4:39

Your posts variable seems to be of type IOrderedQueryable<Post> but you are assigning it a IQueryable<Post>. I see 2 ways to resolve this, either modify your variable type to be IQueryable<Post> or sort your query like this:

posts = posts.Where(post => post.Body == searchString)
    .OrderBy(post => post.Date);
share|improve this answer

posts is IOrderedQueryable and the call to where is returning an IQueeryable. Why don't you explicitly declare the variable and see if it fixes the issue.

share|improve this answer

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