我使用的是試圖找到一個匹配的唯一標識符(GUID)的查詢,如不支持Linq-To-Sql方法?
var myUsers = from u in table
where u.UniqueIdentifierId == MyClass.GetCurrentUserId()
select u;
這引發了不支持的方法錯誤我的自定義功能。我記下它做到這一點
string guid = MyClass.GetCurrentUserId().ToString();
where u.UniqueIdentifierId.ToString() == guid
而且這個工程。我想知道是否有任何其他解決方法不需要創建臨時變量。謝謝。
張貼GetCurrentUserId – Nix 2010-09-20 19:35:34