我正在嘗試僅比較日期。表中的值是DateTime,格式爲 2014-01-29 09:00:00.000。請指教謝謝Linq比較2日期
public static List<vwReportDate> GetDetail(string startDate, string endDate)
{
startDate = "2014-01-28";
endDate = "2014-01-28";
DateTime dtStart = Convert.ToDateTime(startDate);
DateTime dtEndDate = Convert.ToDateTime(endDate);
var entities = new DataEntiies();
var query = from c in entities.vwReportDate
where c.EventCreateDate >= dtStart && c.EventCreateDate <= dtEndDate
select c;
return query.ToList();
}
使用'Date'屬性。 – Styxxy
我注意到你暗示你正在查詢一張桌子。你正在使用哪種ORM工具?實體框架?你能否更新你的問題中的標籤來反映這一點? – Sam
「格式爲[...]的DateTime」 - 沒有這種東西。 DateTime只是一個值;它本身並不具有格式。 –