【发布时间】:2020-12-23 16:49:31
【问题描述】:
这是我的代码。
家长:
public class Parent
{
[Key]
public int Id { get; set; }
[Required]
[MaxLength(50), MinLength(3)]
[Display(Name = "Parent Name")]
public string Name { get; set; }
[Required]
[MaxLength(50), MinLength(3)]
[Display(Name = "Parent Surname")]
public string Surname { get; set; }
public List<Child> Children { get; set; } = new List<Child>();
}
孩子:
public class Child
{
[Key]
public int Id { get; set; }
[Required]
[MaxLength(50), MinLength(3)]
[Display(Name = "Child Name")]
public string Name { get; set; }
[Required]
[MaxLength(50), MinLength(3)]
[Display(Name = "Child Surname")]
public string Surname { get; set; }
[Required]
[Display(Name = "Parent")]
public int ParentId { get; set; }
[ForeignKey("ParentId")]
public virtual Parent Parent { get; set; }
}
视图模型:
public class ParentChildViewModel
{
public Parent Parent { get; set; }
public IEnumerable<Child> Children { get; set; }
}
控制器:
public class DemoController : Controller
{
private readonly ApplicationDbContext _db;
public DemoController(ApplicationDbContext db)
{
_db = db;
}
public async Task<IActionResult> Index(int id)
{
var parent = await _db.Parents.AsNoTracking().FirstOrDefaultAsync(i => i.Id == id);
var child = await _db.Children.AsNoTracking().Where(i => i.ParentId == id).ToListAsync();
var model = new ParentChildViewModel
{
Parent = parent,
Children = child
};
return View(model);
}
}
查看:
@model TwoModels.Models.ParentChildViewModel
<h2> Demo Table Parent</h2>
<table style="border:solid 2px;">
<tr>
<td>
Parent Name:
</td>
<td>
@Html.DisplayFor(m => m.Parent.Name) <br />
</td>
</tr>
<tr>
<td>
Parent Surname:
</td>
<td>
@Html.DisplayFor(m => m.Parent.Surname) <br />
</td>
</tr>
</table>
<h2>Demo Table Child</h2>
<table style="border:solid 2px;">
@foreach (var item in Model.Children)
{
<tr>
<td>
Child Name:
</td>
<td>
@Html.DisplayFor(modelItem => item.Name) <br />
</td>
</tr>
<tr>
<td>
Child Surname:
</td>
<td>
@Html.DisplayFor(modelItem => item.Surname) <br />
</td>
</tr>
}
</table>
正如代码很容易理解的那样,我使用:
_db.Parents.AsNoTracking().FirstOrDefaultAsync(i => i.Id == id) 为父母(我不想要一个列表,但只想要一个)
和:
_db.Children.AsNoTracking().Where(i => i.ParentId == id).ToListAsync()(这是一个列表)
但是以这种方式对数据库的请求是两次。所以,我想修改代码,保持 ViewModel 的使用,但只访问一次数据库。我想到了什么:
_db.Parents.AsNoTracking().Include(c=>c.Children).Where(i => i.Id == id).ToListAsync();
如何更改我的控制器代码和视图?
【问题讨论】:
-
你到底想要什么?
标签: c# asp.net-mvc entity-framework asp.net-mvc-viewmodel