我是新來的MVC,但我已經創建了一個類,在數據模型文件夾,如下所示:在MVC錯誤中創建一個類的對象! C#
public class Book
{
public int ID { get; set; }
public string BookName { get; set; }
public string AuthorName { get; set; }
public string ISBN { get; set; }
}
我想創建此書模型的對象,但我不斷收到此錯誤:
The type or namespace name 'Book' could not be found (are you missing a using directive or an assembly
這裏是我如何創建在控制器中Book
對象:
public ActionResult Test()
{
Book book = new Book();
}
我想我可能會丟失using System.something
,但任何人都可以幫忙嗎?
謝謝。是否重新生成擴展名?應該我應該下載並安裝它? – user3880405