1
我有這樣的查詢。DataTable Linq where子句大寫比較
DataTable products = ...
redirect_str = ...
IEnumerable<DataRow> productsQuery =
from product in products.AsEnumerable()
where product.Field<String>("url") == redirect_str
select product;
它工作正常。
但我怎麼能比較product.Field(「url」)redirect_str沒有考慮案例 。我試過這個,但它不起作用。
IEnumerable<DataRow> productsQuery =
from product in products.AsEnumerable()
where product.Field<String>("url").ToUpper() == redirect_str.ToUpper()
select product;
工程就像一個魅力。非常感謝。 –
是的,你是對的。我得到的錯誤是NullReferenceException。它很混亂,但是當你提到null的價值時,我明白了。 –