如果我只对实际的日期值匹配感兴趣,那么如何编写相同的LINQ查询?
列“ImportDate”的值与此类似 2009-08-30 12:26:00
from t in UnitsOfWork _ where t.ImportDate = "08/30/2009" _ select t
您可以将其作为字符串进行比较,也可以仅使用ImportDate上的Date属性
where t.ImportDate.ToString("yyyyMMdd") == "20090830"
where t.ImportDate.Date == new DateTime(2009,8,30)