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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…