from di in ImportDealerProducts
join p in Products on
new {di.SupplierCode,di.ProductCode} equals new{p.SupplierCode,p.ProductCode}
where p.SupplierId1
&& ! (
from df in DealerFavoriteProducts
where df.DealerId1
select df.ProductId
).Contains(p.ProductId)
select new {
p.ProductId,
di.SupplierCode,
p.ProductCode
}
linq joinin
最新推荐文章于 2022-01-12 14:57:38 发布