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

I have the following code:

    public ActionResult Details(int orderId)
    {
        var query = from orderDetails in storeDb.OrderDetails
                    where orderDetails.OrderId = orderId
                    select new { orderDetails.Product, orderDetails.Quantity, orderDetails.UnitPrice };

        return View(query);
    }

I want to get the rows of orderDetails where the foreign key OrderId is equal to the parameter orderId. However I keep getting the following error: Error 2 Cannot implicitly convert type 'int' to 'bool'. What am I missing?

share|improve this question

2 Answers

up vote 8 down vote accepted

where orderDetails.OrderId = orderId

Needs to be

where orderDetails.OrderId == orderId

share|improve this answer
Unbelievable.. thanks. :-) – Seth Jul 24 '11 at 5:01
2  
@Seth since this is the right answer you should mark it as the answer. – m4tt1mus Jul 24 '11 at 5:05
where orderDetails.OrderId == orderId
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.