如何从MVC中的容器对象的创建控制器/视图创建嵌套对象?

时间:2017-06-15 21:15:25

标签: c# asp.net-mvc razor

我是MVC的新手,我正在努力让自己从Web表单背景中获得灵感。

我有一个时间表应用程序的两个类,WeekTimeEntry

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个对象。

想法是有一种输入时间的方式: enter image description here

(我计划在需要时使用JQuery创建一个新行,但稍后会尝试将这一点弄清楚!)

欣赏这是一个noob问题,但无法弄清楚我需要在Google上查找的内容!

0 个答案:

没有答案