Good afternoon! I have a LINQ query:
results = from a in uow.Query<SomeTable>()
where SomeDateField = somedate
select a;
Now I should use IN clause for the some dates. How can I do something like this in LINQ?
SELECT * FROM SomeTable WHERE SomeDateField IN ('2021-08-30','2021-09-03','2021-08-16')
This is not a condition between two dates, namely IN clause for few dates