我的SQL查詢:轉換SQL查詢到LINQ得到錯誤的轉換日期
select count(*),CONVERT(varchar, AddedOn, 101)
from MemberNotifications where IsActive=1
group by CONVERT(varchar, AddedOn, 101)
order by CONVERT(varchar, AddedOn, 101) desc
但林不能夠得到的結果,在下面試圖
List<NotificationCounts> lst =
(from mn in this.MemberNotifications
where mn.UId.Equals(friendId)
select new NotificationCounts{ NotificationDate = mn.AddedOn.ToString("mm/dd/yyyy") })
.ToList<NotificationCounts>();
我想唯一的名單日期字符串墊,但它給一個異常
LINQ到實體無法識別方法「System.String 的ToString( System.String)'方法,並且此方法不能將 轉換爲商店表達式。
有沒有解決這個錯誤的方法?
是什麼NotificationDate'的''中的類NotificationCounts'類型 – Damith