下午,我正在尝试进行简单的搜索,该搜索适用于产品标题。但是我需要在搜索中添加其他参数。我有下面代码的基础,至少我认为它应该是。我已经注释掉了其他项目
有人可以提供一些指导,因为我被困在自动取款机上。
var query = from a in dc.aProducts
join t in dc.bProducts on a.sku equals t.sku
where SqlMethods.Like(t.title, "%" + productName + "%")
//Compare Prices
//&& (p => (double)p.Price >= priceFrom && (double)p.Price <= priceTo)
//Product SKU
//t.sku == productSku
//Product Brand
//t.brand == productBrand
//a.asin == productAsin
//a.Live == IsLive
非常感谢您,非常感谢所有帮助。