MVC - 无法在我的视图中调用我的模型

时间:2017-02-22 03:44:26

标签: asp.net .net asp.net-mvc

我在我的模型文件夹中创建了一个模型

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity.Core.Objects;

namespace EMWeb.Models
{
    public class ReportIndexModel
    {
        public ObjectResult<GetTxSummary_Result> txSummaryResult { get; set; }
    }
}

然而,在我看来,它出现了, enter image description here

我可能知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

您需要添加模型的引用,如

@model EMWeb.Models.ReportIndexModel

无需将;删除即可。