0

这是我的代码

 HotelMGT _DB = new HotelMGT();

    public virtual ActionResult Index()
    {
        ViewBag.TypeID = new string[] { "Assets", "Liabilities", "Income","Expenses" };
        var model = from r in _DB.AccountHead
                    orderby r.AccountHeadID ascending
                    //where r.AccountTypeID == AccountTypeID || (AccountTypeID==null)
                    select r; //_DB.AccountType;
        return View(model );
    }

我收到以下错误。

 Ambiguity between 'MyHotel.Models.HotelMGT.AccountHead' and   
 'MyHotel.Models.HotelMGT.AccountHead'

Id 与 C# 或 MVC 相关的错误,我该如何解决?欢迎所有建议。

问候。

4

1 回答 1

0

您比较相同的值,因此请指定您从中获取数据的表。

错误实际上是说您将鸡蛋与鸡蛋进行比较,但您只有一个鸡蛋,我们需要另一个鸡蛋。

于 2012-04-21T14:33:07.023 回答