var products =
(
from p in products
where !p.parentID.HasValue
select new ProductList
{
Name = p.Name,
Id = p.ID,
IsInStock = products.Any(...)
}
)
.ToArray();
I want to call ToDictionary() and have the Id as the Key, and IsInStock as the value.
Is this possible?

