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..
