任何幫助是非常讚賞的傢伙!看不到FirstOrDefault
GetProductByID下,我收到一個錯誤,說「int不包含FirstOrDefault定義」。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using HomebaseSystemNew.Models;
namespace HomebaseSystemNew.Controllers
{
public class ProductRepository
{
public ProductsController GetProductID(int Pid)
{
Product db = new Product();
return db.Pid.FirstOrDefault(db => db.Pid == Pid);
}
}
}
你的問題與MVC3無關。你只是簡單地使用`FirstOrDefault`。 `db.Pid`是一個`int`,但它需要可枚舉才能使用`FirstOrDefault`。 – 2011-10-17 12:42:36