You just use the OR condition for the language. In C #:
var results = from row in table
where row.date < today || row.visible == false
select row;
If you prefer the syntax of the method:
var results = table.Where(row => row.date < today || row.visible == false);
source
share