2つのエンティティモデルを組み合わせたビューが必要です。次のようなクラスを作成しました。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using FSDS.DataModels;
namespace FSDS.WebUX.Models
{
public partial class ChainandJob
{
public ScheduleJobChain chain {get;set;} //this object has 6 properties
public ScheduleJob job {get;set;} //this object has 8 properties.
}
}
「create」スキャフォールドを使用して、新しい部分ビューを作成しました。これは私に与えるものです:
@model FSDS.WebUX.Models.ChainandJob
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
<legend>ChainandJob</legend>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
すべてのフィールドはどこにありますか?