小弟想請教個問題
我用mssql當作資料庫,透過EF去取資料,想要作排序的動作 (依日期)
code如下
var t2 = (from t in _dbContext.prediction_table
where t.final_score != null
&& t.final_score != "cancel"
&& t.final_score != "postponed"
orderby t.gamedate_judge descending
select t.gamedate_judge).Distinct();
(gamedate_judgu型態是DateTime),理論上這樣應該是取出排序過的值
可我將其轉存到DateTime[] dt = t2.ToArray();
卻發現內容不是按順序排,出現如下結果
2016/6/6 上午12:00:00
2016/7/6 上午12:00:00
2016/7/22 上午12:00:00
2016/5/31 上午12:00:00
2016/7/30 上午12:00:00
是我弄錯語法嗎??
可否告知方向,謝謝