Mam nadzieję, że ktoś może mi pomóc. Jestem nowy w MVC, pochodzącym z winforms/console/vb6background.Obiekt potomny modelu MVC null na poście HTTP
Przepraszam, jeśli już udzielono odpowiedzi, staram się zrozumieć, w jaki sposób mogę rozwiązać poniższy problem.
Mam modelu wyświetlania:
public class testvm
{
public int id { get; set; }
public DateTime date { get; set; }
public student studentID { get; set; }
public testvm() { }
public testvm (student s)
{
studentID = s;
}
}
Ja wstępnie wypełniania studenta podrzędny obiekt tego ViewModel zanim zostanie przekazany do widzenia.
Student Model:
public class student
{
[Key]
public int ID { get; set; }
public string Name { get; set; }
}
Mam problem jest, gdy model jest zwracana do stworzenia metody HTTP POST przedmiot uczeń dziecko jest pusty.
Kod kontroler:
// GET: testvms/Create
public ActionResult Create(int sId)
{
student a = db.students.Find(sId);
testvm b = new testvm(a);
return View(b);
}
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "id,date,student")] testvm testvm)
{
if (ModelState.IsValid)
{
db.testvws.Add(testvm);
db.SaveChanges();
return RedirectToAction("Index");
}
return View(testvm);
}
Zobacz Kod:
@model WebApplication2.Models.testvm
@{
ViewBag.Title = "Create";
}
<h2>Create</h2>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>testvm</h4>
<hr />
@Html.HiddenFor(model => model.studentID.ID)
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
<div class="form-group">
@Html.LabelFor(model => model.date, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.date, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.date, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>
</div>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}
Model obiektów na widoku jest wypełniane informacjami studentów. Kiedy zostanie on przekazany do kontrolera Create POST, obiekt potomny ucznia ma wartość NULL!
Czy ktoś może doradzić, gdzie idę źle lub w prawidłowy sposób, aby to osiągnąć?
Moja aplikacja będzie zawierała wiele formularzy, które będą wstępnie wypełnione informacjami o uczniach. Każdy uczeń będzie miał wiele formularzy, które będą musiały zostać wypełnione.
Dziękujemy wcześniej, Rob