次のOUTER JOIN LINQクエリでは、右側の行がnullの場合にWhere
句にNULL例外が発生します(c.CustomerID外部結合のord.CustomerIDと一致しません)。 質問:ord.priceがnullである場合、ケースを処理するにはどうすればいいですかWhere clause
注:価格はNULL型のタイプint?
です。Where句のSQL IsNull(..、..)のLINQ相当
Query1 = from c in Customers
join ord in Orders on c.CustomerId equals ord.CustomerId into cord
from t in cord.DefaultIfEmpty()
where t.price = null || t.price > 100
select new {CustName = c.Name, OrderID = (t == null ? 0 : t.OrderId)};
UPDATE:ごめんなさい
は、where句にタイプミスがありました。
- 指摘JeffMercado @として、それは
Where
節に欠落している節がありましたt.price
とないord.price
- でなければなりません。私はそれを修正しました:
where t.price = null || t.price > 100
。しかし、今、私はエラーを取得しています:あなたがこれを行うことができますoperator || cannot be applied to operands of type '<null>' and 'int'
を、あなたは句、すなわちord.price> 100 && ORDに条件を追加することができます.price!= null –
@RohitGarg申し訳ありませんが、投稿に入力ミスがありました。 **更新**セクションを投稿に追加しました。 – nam
@RohitGargこれは、 "ord.price!= null && ord.price> 100"のような短絡 "AND"の前にord.price!= nullを入れなければならない場合、第2の条件はチェックされません。 :) –