1. 程式人生 > >Sequence contains no elements : LINQ error

Sequence contains no elements : LINQ error

con efault [] new nta () enc items 替換

1.錯誤意思:

出現錯誤的原因是:你要從一個null中取的數據。

2.錯誤的處理

1,使用FirstOrDefault() 來代替 First()

2、使用SingleOrDefault 來代替 Single

3、使用 ElementAtOrDefault 來代替 .ElementAt

4、如果是在Average, Sum等中報錯

var items = new int[] {1, 2, 3, 4, 5};
Double avg = items.Average();  
替換:
Double avg = items.Where(x=>x > 10).Average(); 

Double avg = items.Where(x=>x > 10).DefaultIfEmpty().Average(); 

  

Sequence contains no elements : LINQ error