選擇這樣的查詢:mvc5創建新的查詢
var data = db.tableone.Where(a => a.type == 1).Select(u => new {id = u.id, type = u.type,newcolumnnotexistindatabase = "test"});
return data.ToList();
同時有5列由1類型,它應該顯示我在列表
id, type -- newcolumnnotexistindatabase
1 , 1 --test
2 , 1 --test
3 , 1 --test
4 , 1 --test
5 , 1 --test
ERORR:
不能隱式轉換類型'System.Collections.Generic.List < <
你能寫出完整的異常詳細信息嗎? – Natiq
,同時以的形式返回它錯誤寫入 –
zomham
它看起來像是查詢所屬方法的返回類型的問題。沒有完整的方法**返回類型**,您將無法獲得任何幫助。 –