Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implicit convert List<int?> to List<int>

I am using Linq to Entities.

Have an entity "Order" which has a nullable column "SplOrderID".

I query my Orders list as

List<int> lst = Orders.where(u=> u.SplOrderID != null).Select(u => u.SplOrderID); 

I understand it is because SplOrderID is a nullable column and thus select method returns nullable int.

I am just expecting LINQ to be little smart.

How should i handle this?

like image 868
Manvinder Avatar asked Jan 18 '13 07:01

Manvinder


1 Answers

As you are selecting the property, just get the value of the nullable:

List<int> lst =   Orders.Where(u => u.SplOrderID != null)   .Select(u => u.SplOrderID.Value)   .ToList(); 
like image 121
Guffa Avatar answered Sep 18 '22 20:09

Guffa