テーブルから今日のレコードを取得したい。次のクエリを書きました-
public ICollection<DashboardNotification> GetNotificationOfToday()
{
DateTime todaysDate = DateTime.Now;
DateTime yesterdaysDate = DateTime.Now.AddDays(-1);
db = new BobTheBuilderEntities();
var notificationList = (from n in db.DashboardNotifications.OrderByDescending(n => n.NotificationDateTime)
where (n.NotificationDateTime > yesterdaysDate && n.NotificationDateTime <= todaysDate)
select n).ToList();
return notificationList;
}
しかし、上記のクエリは機能していません。昨日のレコードも取得しているためです。
この問題を解決するには?