今日(または特定の日付範囲)のみの行をテーブルから取得するには、これを行うだけです。このアプローチの良いところは、特定の日付または日付範囲の両方の場合に機能することです。
// specify date range (without time)
DateTime currentDate = System.DateTime.Now.Date;
DateTime nextDate = currentDate.AddDays(1);
var second_data = from b in this.database.table
where b.timeStamp.Value >= currentDate
and b.timeStamp.Value < nextDate
select b;