下午,如果以下行为空,我似乎无法弄清楚如何忽略
where ((double)t.twePrice >= priceFrom && (double)t.twePrice <= (priceTo))
正如您在下面的代码中看到的那样,当它是一个字符串时,我可以做到这一点。但我对价格有疑问。有人可以为我解释一下吗?
from a in dc.aboProducts
join t in dc.tweProducts on a.sku equals t.sku
where (string.IsNullOrEmpty(productSku) || productSku == t.sku)
where (string.IsNullOrEmpty(productAsin) || productAsin == a.asin)
where (string.IsNullOrEmpty(productName) || t.title.Contains(productName))
where (string.IsNullOrEmpty(productBrand) || t.brand.Contains(productBrand))
where ((double)t.twePrice >= priceFrom && (double)t.twePrice <= (priceTo))
select new GetProducts
更新:我基本上是在发送大量项目来搜索我的 MS SQL 数据库,根据字符串,其中一些可能为 NULL。价格也可能为空,因为并非一直都需要。所以如果价格为空,我不需要使用它们。
非常感谢。