ASP.NET MVC 5教程错误:找不到类型或命名空间名称

时间:2015-05-04 05:12:51

标签: c# asp.net-mvc visual-studio

我正在YouTube上学习ASP.NET MVC 5教程。我真的很享受。但是,我坚持看似奇怪的错误。奇怪的意思我认为我已经在教程中输入了所有内容,但VS2013正在标记我,我无法弄清楚可能出错的地方。将数学变量定义为课程似乎很好。但是,它不喜欢数学。

enter image description here

模型/ Course.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace MyfirstProject.Models
{
    public class Course
    {
        int CourseID { get; set; }
        string CourseName { get; set; }
        int TotalCredits { get; set; }
    }
}

控制器/ XyzController.cs

using MyfirstProject.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace MyfirstProject.Controllers
{
    public class XyzController : Controller
    {
        // GET: Xyz
        public ActionResult Abc()
        {
            Course math = new Course();
            .....
            .....

1 个答案:

答案 0 :(得分:1)

清洁并重建解决方案,正如Jenish Rabadiya在评论中提到的那样。

<强>更新

在以下类中将属性设为公共

 public class Course
{
    public int CourseID { get; set; }
    public string CourseName { get; set; }
    public int TotalCredits { get; set; }
}