私は2つのテーブルを持っています 私が試しているのは最後のdivで、CategoryNameはすでに挿入した名前を持つDrobDownリストです...このデータを取得するにはどうすればよいですか? コードに関する何かが明確でない場合は、これが私のモデルであると説明します:
public class Profits
{
[Key]
public int id { get; set; }
public double Value { get; set; }
public string Description { get; set; }
public DateTime DateCreation { get; set; }
public ProfitCategories CategoryName { get; set; }
}
}
これは私のコントローラーです:
public ActionResult DoInsertProf(Profits profits)
{
var Profit = new Profits
{
CategoryName = profits.CategoryName,
Value = profits.Value,
DateCreation = DateTime.Now,
Description = profits.Description,
};
db.Profit.Add(profits);
db.SaveChanges();
return Redirect("/SelectData/ReadProfit");
}
これが私の見解です:
@using (Html.BeginForm("DoInsertProf","InsertProfit"))
{
@Html.ValidationSummary(true)
<fieldset>
<legend>Profits</legend>
<div class="editor-label">
@Html.LabelFor(model => model.Value)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Value)
@Html.ValidationMessageFor(model => model.Value)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Description)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Description)
@Html.ValidationMessageFor(model => model.Description)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.CategoryName)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.CategoryName)
@Html.ValidationMessageFor(model => model.CategoryName)
</div>