我想將自定義(複合和只讀)屬性添加到我的存儲過程結果類。當我這樣做,我得到了錯誤Linq to SQL with Stored Procedures
LINQ - Cannot assign value to member XXX. It does not define a setter.
然後我發現這個blog post - 筆者認爲,與[表]屬性裝飾部分類將解決此問題。
1: [Table]
2: partial class GetContactsResult
3: {
4: public string FullName
5: {
6: get
7: {
8: return FirstName + " " + LastName;
9: }
10: }
11: }
但後來我得到這個錯誤:
The type or namespace name 'Table' could not be found (are you missing
a using directive or an assembly reference?)
有沒有辦法做到這一點?
2正確答案 - 只有一個能獲得複選標記。謝謝。 – cdonner 2009-11-29 23:50:02