I have the following, but it's failing with a NullReferenceException:
<td>@item.FundPerformance.Where(xx => fund.Id == xx.Id).FirstOrDefault().OneMonth ?? -</td>
OneMonth is defined as
public virtual decimal? OneMonth { get; set; }
and its value is null at the time that it fails.
I thought the Null Coalesce operator would test if its null and if so, return the value to the right of the operator?
What do I need to change to make this work?
FundPerformance-object selected byFirstOrDefault()that is null? If that's the case than you'd be trying to get a reference from an object that is null, which gives aNullReferenceException– Joakim Johansson Dec 9 '11 at 10:39