तालिका से पंक्तियाँ प्राप्त करने के लिए जो केवल आज (या किसी विशिष्ट दिनांक सीमा) के लिए हैं, आप बस ऐसा कर सकते हैं। इस दृष्टिकोण के बारे में अच्छी बात यह है कि यह किसी विशिष्ट तिथि या दिनांक सीमा के दोनों मामलों के लिए काम करता है।
// 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;