我需要Enumarable值從下面的類,但給錯誤返回linq中Class的可枚舉值?
public static Enumerable LoadDataByName(string name)
{
List<StuffDepartman> Stuff = (List<StuffDepartman>)HttpContext.Current.Session["Stuffs"];
var stuffs = from s in Stuff select s;
stuffs = from s in Stuff where s.Name = name select s.Name;
return stuffs.AsEnumerable();
}
但給我的錯誤:System.Linq.Enumerable「:靜態類型不能用作返回類型
如果我添加您的代碼,錯誤更改.... – Penguen 2009-05-24 17:02:44
錯誤1:不能隱式地將類型'字符串'轉換爲'布爾' – Penguen 2009-05-24 17:02:52