small things

This commit is contained in:
2021-03-03 23:47:29 +01:00
parent 234cdbf9e8
commit 3959943607
7 changed files with 10 additions and 10 deletions

View File

@ -44,7 +44,7 @@ namespace StockDAL
{
using var context = new StockContext();
var output = (from stk in context.Stocks
where stk.SoldDate == null
where stk.SoldDate == null || stk.ActValue > 0
select stk).ToList();
return output;
}