vote up 0 vote down star

In the example below, why is product null?

using System.Collections.Generic;
using System.Linq;

namespace TestEventsds343
{
    public class Program
    {
        static void Main(string[] args)
        {
            Product product = Product.LoadProduct(222);
        }
    }

    public class Product
    {
        public int ProductNumber { get; set; }
        public string Name { get; set; }
        public string Description { get; set; }

        public static Product LoadProduct(int productNumber)
        {
            List<Product> products = new List<Product>();
            products.Add(new Product { ProductNumber = 111, Name = "Intel CPU", Description = "Newest model, very fast." });
            products.Add(new Product { ProductNumber = 222, Name = "Philips Monitor", Description = "22-inch, very nice." });
            products.Add(new Product { ProductNumber = 333, Name = "Sony Camera", Description = "10 Megapixels, sharp pictures." });

            return products.Where(p => p.ProductNumber == productNumber) as Product;
        }
    }
}
flag

Which line of code tells you it's null? – drivendevelopment Oct 15 at 16:28

2 Answers

vote up 6 vote down check

Where returns an IEnumerable not a single result and using as doesn't throw an exception and just casts it to null, you need to use SingleOrDefault()

return products.Where(p => p.ProductNumber == productNumber).SingleOrDefault();
link|flag
Just as clarification, Where returns IEnumerable, not a collection. This isn't just a semantic difference; there is no actual collection. – Adam Robinson Oct 15 at 16:28
@Adam, you are correction, I knew what I meant in my head....if you know what I mean. To me it was semantics, but I really should clarify better. Edited. – Stan R. Oct 15 at 16:30
Right -- the clear way to remember this is that Where returns an object that represents a filter. It does not return a filtered collection, it returns the abstract notion of "filter this collection". When you iterate that object, then and only then does it filter the collection. – Eric Lippert Oct 15 at 17:25
vote up 1 vote down

Don't cast it as Product, it already is a product.

return products.Where(p => p.ProductNumber == productNumber).FirstOrDefault()

Null would indicate it doesn't exist, an object returned would be it found something.

Try that.

link|flag
its not a Product its IEnumerable<Product> – Stan R. Oct 15 at 16:34
he is returning a Product, not an IEnumerable<Product> "static Product LoadProduct(" – TravisWhidden Oct 15 at 21:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.