0
我新的ASP.NET MVC和我一直在試圖創造,我有這三個班的學校申請:使用外鍵獲取更多列可能嗎?
public class student
{
public int id { get; set; }
public string name { get; set; }
}
public class subject
{
public int id { get; set; }
public int Math { get; set; }
public int Computer { get; set; }
public int Chemistry { get; set; }
}
public class result
{
public int id { get; set; }
public int studentId { get; set; }
public int subjectId { get; set; }
public int Total { get; set; }
public virtual student students { get; set; }
public virtual subject subjects { get; set; }
}
我想主題的所有屬性的結果喜歡數學,計算機,化學,所以我可以在結果頁面上編輯,創建或刪除它們。
有人可以指向我的任何教程或幫助我嗎?
您嘗試創建一個應用程序之前,請閱讀數據庫規範化一些教程,然後嘗試去學習如何在DATABSE使用代碼第一種方法建模。就目前而言,您的代碼存在太多缺陷。 – CodingYoshi