asp.net-mvc
Använda flera modeller i en vy
Sök…
Introduktion
Huvudfokus för detta ämne med flera modellklasser i MVC: s skikt
Använda flera modeller i en vy med dynamiskt ExpandoObject
ExpandoObject ( System.Dynamic
namespace) är en klass som lades till .Net Framework 4.0
. Denna klass tillåter oss att dynamiskt lägga till och ta bort egenskaper till ett objekt under körning. Genom att använda Expando-objekt kan vi lägga till våra modellklasser i dynamiskt skapade Expando-objekt. Följande exempel förklarar hur vi kan använda detta dynamiska objekt.
Lärare och studentmodell:
public class Teacher
{
public int TeacherId { get; set; }
public string Name { get; set; }
}
public class Student
{
public int StudentId { get; set; }
public string Name { get; set; }
}
Metoder för lärar- och studentlistor:
public List<Teacher> GetTeachers()
{
List<Teacher> teachers = new List<Teacher>();
teachers.Add(new Teacher { TeacherId = 1, Name = "Teacher1" });
teachers.Add(new Teacher { TeacherId = 2, Name = "Teacher2" });
teachers.Add(new Teacher { TeacherId = 3, Name = "Teacher3" });
return teachers;
}
public List<Student> GetStudents()
{
List<Student> students = new List<Student>();
students.Add(new Student { StudentId = 1, Name = "Student1"});
students.Add(new Student { StudentId = 2, Name = "Student2"});
students.Add(new Student { StudentId = 3, Name = "Student3"});
return students;
}
Controller (med dynamisk modell):
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Message = "Hello World";
dynamic mymodel = new ExpandoObject();
mymodel.Teachers = GetTeachers();
mymodel.Students = GetStudents();
return View(mymodel);
}
}
Se:
@using ProjectName ; // Project Name
@model dynamic
@{
ViewBag.Title = "Home Page";
}
<h2>@ViewBag.Message</h2>
<h2>Teacher List</h2>
<table>
<tr>
<th>Id</th>
<th>Name</th>
</tr>
@foreach (Teacher teacher in Model.Teachers)
{
<tr>
<td>@teacher.TeacherId</td>
<td>@teacher.Name</td>
</tr>
}
</table>
<h2>Student List</h2>
<table>
<tr>
<th>Id</th>
<th>Name</th>
</tr>
@foreach (Student student in Model.Students)
{
<tr>
<td>@student.StudentId</td>
<td>@student.Name</td>
</tr>
}
</table>
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow