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

In VisualStudio 2008 I get the following error on my linq query:

cannot convert sourcetype 'System.Linq.IQueryable' to target type 'string'

This is the query:

  var query = (from c in model.ITEMLIST
               select new ItemList
                        {
                          LineNo = c.LINE_NO,
                          SupplierName = from s in model.VENDOR where s.ID == c.ID_VENDOR select s.NAME
                                                     });

If I run the same query in LinqPad it returns with success the expected result

I am using LinqToEntity for this. In another project where I am using LinqToSql I have a similar query which runs fine.

share|improve this question

1 Answer

up vote 1 down vote accepted

Your problem is this line

SupplierName = from s in model.VENDOR where s.ID == c.ID_VENDOR select s.NAME

SupplierName is a string but the right hand side is a query. Try assigning the only result in the query instead.

SupplierName = 
    (from s in model.VENDOR where s.ID == c.ID_VENDOR select s.NAME).Single()

or, in the style I prefer

SupplierName = model.VENDOR.Single(v => v.ID == c.ID_VENDOR).NAME;
share|improve this answer
Indeed it is :) Thank you – Kman Nov 22 '12 at 10:58

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.