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.
var cityList = from country in 
                    doc.Element("result").Element("cities").Descendants("city")
select new {
        Name = country.Element("name").Value,
        Code = country.Element("code").Value,
        CountryCode = int.Parse(country.Element("countrycode").Value)
    };

foreach(var citee in cityList)
{
    City city = new City();
    city.CountryID = from cnt in db.Countries 
             where cnt.DOTWInternalID == citee.CountryCode select cnt.ID;
}

I'm getting an error on the second query as seen in the title of this post. I tried converting to int to nullable int but nothing worked. Help me, guys.

Thanks

share|improve this question
Is there more to your example? It looks like the City object will always get discarded after every iteration of the loop? – R0MANARMY Apr 4 '10 at 17:42

4 Answers

up vote 8 down vote accepted

it will return an iQueryable, you will need to do something like using the First

cit.CountryID = db.Countries.First(a=>a.DOTWInternalID == citee.CountryCode).ID
share|improve this answer
oops i was so dumb to ask this question, actually i didn't notice this, actually i was all this time concentrating on this cnt.DOTWInternalID == citee.CountryCode not the returning ID.. sigh – Aneef Apr 4 '10 at 17:38
Not dumb, I'm starting with linq and this answer was just what I needed! thanks – Paulo Manuel Santos Aug 20 '10 at 20:30

Here is the problem and solution

from cnt in db.Countries where cnt.DOTWInternalID == citee.CountryCode select cnt.ID part. If you omit the ID then it returns a Generic IEnumerable with Country(hoping that you have Country class). So what you have to do is first return the select criteria and select the first row then the ID field. Same like shown below.

cit.CountryID = (from cnt in db.Countries where cnt.DOTWInternalID == citee.CountryCode   select cnt).First<Country>().ID;

This will solve your problem.

share|improve this answer

IQueryable is not a single int - but a query that can represent a collection.

share|improve this answer

As the error message says, your Linq query returns an System.Linq.IQueryable (for all intents and purposes a collection of ints). If you'd like to get one of them, you can either call First or ElementAt(n) to get the n'th element.

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.