linq join с меньшим или равным int - PullRequest
0 голосов
/ 08 февраля 2012

Я хотел бы знать, как лучше всего подходить для предложения where, где значение меньше или равно значению int?

var outOfStockProducts = (from theMapProd in context.tblProductOptions_MAP
                          join theProd in context.tblProducts on theMapProd.productID equals theProd.productID
                          where theProd.stock_Level  <= 5
                          select theMapProd).ToList();

1 Ответ

0 голосов
/ 11 февраля 2012

Это еще один способ, не проверенный.

var outOfStockProducts = (from theMapProd in context.tblProductOptions_MAP
                      join theProd in context.tblProducts on theMapProd.productID equals theProd.productID
                      select theMapProd).ToList();

outOfStockProducts=outOfStockProducts.where(x=>x.stock_Level  < 5 || x.stock_Level ==5).ToList();
...