, DbSet<News>, . , , :
public virtual IEnumerable<News> TodaysNews
{
get { return News.WHere(n => n.PublishDate == DateTime.Today); }
}
, , , :
var todaysGoodNews = from n in ctx.TodaysNews
where n.IsGood == true
select n;
, , , . , , IEnumerable<>, - (IQueryable<>, ?).
Edit:
. , /. , , ? TodaysNews - .