Filtering invoices by StartDate and EndDate

Now it's required to separate parameters with comma. Forced to do
this because dates have spaces between date and time part
This commit is contained in:
rockstardev
2019-04-25 18:13:17 -05:00
committed by Rockstar Developer
parent 3b91b38014
commit d5bd0ee781
6 changed files with 112 additions and 119 deletions

View File

@@ -463,7 +463,7 @@ retry:
{
// Hacky way to return an empty query object. The nice way is much too elaborate:
// https://stackoverflow.com/questions/33305495/how-to-return-empty-iqueryable-in-an-async-repository-method
return query.Where(x => false);
return query.Where(x => false);
}
query = query.Where(i => ids.Contains(i.Id));
}