S
shapper
Hello,
I have the following Linq query:
IQueryable<Article> articles = (from a in database.Articles
where a.IsPublished
== true
orderby a.UpdatedAt
descending).AsQueryable();
How can I get the articles which UpdatedAt is in a range of StartDate
to EndDate?
Thanks,
Miguel
I have the following Linq query:
IQueryable<Article> articles = (from a in database.Articles
where a.IsPublished
== true
orderby a.UpdatedAt
descending).AsQueryable();
How can I get the articles which UpdatedAt is in a range of StartDate
to EndDate?
Thanks,
Miguel