這是我的代碼:我該如何正確地投入表格?
public IQueryable<User> getuserid(string email)
{
return from m in DBL.Users
where m.Email == email
select m.ID;
}
我一直有這個錯誤:
Cannot implicitly convert type 'System.Linq.IQueryable<long> to 'System.Linq.IQueryable<User>'. An explicit conversion exists.
我應該如何正確地投它?
'選擇m.ID;''選擇該ID''long'但你嘗試返回IQueryable的''將 –
Grundy