我是MVC的新手,我正在努力让自己从Web表单背景中获得灵感。
我有一个时间表应用程序的两个类,Week
和TimeEntry
:
public class Week
{
public int WeekID { get; set; }
public DateTime WeekStartDate { get; set; }
public string UserID { get; set; }
[ForeignKey("UserID")]
public virtual ApplicationUser ApplicationUser { get; set; }
public virtual ICollection<TimeEntry> TimeEntries { get; set; }
}
public class TimeEntry
{
public int TimeEntryID { get; set; }
public int ClientID { get; set; }
[ForeignKey("ClientID")]
public virtual Client Client { get; set; }
public double MonHours { get; set; }
public double TueHours { get; set; }
public double WedHours { get; set; }
public double ThuHours { get; set; }
public double FriHours { get; set; }
}
我希望能够从TimeEntry
控制器动态创建Week
个对象。
(我计划在需要时使用JQuery创建一个新行,但稍后会尝试将这一点弄清楚!)
欣赏这是一个noob问题,但无法弄清楚我需要在Google上查找的内容!