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.

I'm migrating some stuff from one mysql server to a sql server but i can't figure out how to make this code work:

using (var context = new Context())
{
    ...

    foreach (var item in collection)
    {
        IQueryable<entity> pages = from p in context.pages
                                   where  p.Serial == item.Key.ToString()
                                   select p;
        foreach (var page in pages)
        {
            DataManager.AddPageToDocument(page, item.Value);
        }
    }

    Console.WriteLine("Done!");
    Console.Read();
}

When it enters into the second foreach (var page in pages) it throws an exception saying:

LINQ to Entities does not recognize the method 'System.String ToString()' method, and this method cannot be translated into a store expression.

Anyone know why this happens?

share|improve this question

6 Answers

up vote 31 down vote accepted

Just save the string to a temp variable and then use that in your expression:

var strItem = item.Key.ToString();

IQueryable<entity> pages = from p in context.pages
                           where  p.Serial == strItem
                           select p;

The problem arises because ToString() isn't really executed, it is turned into a MethodGroup and then parsed and translated to SQL. Since there is no ToString() equivalent, the expression fails.

share|improve this answer
So simple, thanks. – Babak Naffas Nov 12 '11 at 0:55
What if my ToString() is being applied on the left-hand-side of equality? e.g. p.Serial.ToString() = item. – dotNET Mar 26 at 18:46
1  
@dotNet That will still fail because the whole thing get's turned into an Expression, which Entity Framework tries to turn into valid SQL. There are some methods it knows how to handle, but ToString() isn't one of them. – Josh Mar 27 at 1:26
@Josh: I understand that it will fail. What I was asking for is a solution of that scenario, because the above solution obviously cannot be applied there. – dotNET Mar 27 at 4:18
2  
@dotNET this is one of those scenarios where an ORM falls down on it's face. I think it's ok in those situations to drop down into either straight SQL via ExecuteQuery or by using Entity SQL with ObjectQuery<T> – Josh Mar 27 at 12:15
show 3 more comments

The problem is that you are calling ToString in a LINQ to Entities query. That means the parser is trying to convert the ToString call into its equivalent SQL (which isn't possible...hence the exception).

All you have to do is move the ToString call to a separate line:

var keyString = item.Key.ToString();

var pages = from p in context.entities
            where p.Serial == keyString
            select p;
share|improve this answer

Change it like this and it should work:

var key = item.Key.ToString();
IQueryable<entity> pages = from p in context.pages
                           where  p.Serial == key
                           select p;

The reason why the exception is not thrown in the line the LINQ query is declared but in the line of the foreach is the deferred execution feature, i.e. the LINQ query is not executed until you try to access the result. And this happens in the foreach and not earlier.

share|improve this answer

Calling ToArray will realize the query (e.g. preform db query inmediatly. No lazy loading) - as far as i understand. so doing so will potentially retrive many records, apposed to making all query phrases, joins, etc - prior to ToArray.

share|improve this answer

Just turn the LINQ to Entity query into a LINQ to Objects query (e.g. call ToArray) anytime you need to use a method call in your LINQ query.

share|improve this answer
"anytime you need to use a method call" is poor advice - with many records this could be a big problem. The accepted answer is much better for this scenario. – PeteGO May 1 at 19:16

Had a similar problem. Solved it by calling ToList() on the entity collection and querying the list. If the collection is small this is an option.

IQueryable<entity> pages = context.pages.ToList().Where(p=>p.serial == item.Key.ToString())

Hope this helps.

share|improve this answer
it helped me, thanks – Wachburn Jan 30 at 16:26
3  
Please note this will retrieve all Page entities from the database, and do the filtering on the client side instead of the db.. usually not a good thing. – Steve Lamb Mar 12 at 0:06

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.