我正在尝试制作一个由EF核心节目相关表格数据创建的DotnetCore C#MVC Razor页面,并且在我的页面模型OnGetAsync方法中或者当试图在Razor中显示包含的内容时,看起来要么遇到LINQ .include问题页。
任何帮助将不胜感激。如果我能提供更多相关信息,请告诉我。我现在只做了几个月的EFCore / RazorPages / Mvc / C#,所以请善待!
以下是index.cshtml.cs
页面,其中包含子表:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.EntityFrameworkCore;
using Appname.Models;
namespace Appname.Pages.Request
{
public class IndexModel : PageModel
{
private readonly Appname.Models.dbContext _context;
public IndexModel(Appname.Models.dbContext context)
{
_context = context;
}
public IList<ParentTable> ParentTable { get;set; }
public async Task OnGetAsync()
{
ParentTable = await _context.ParentTable
.Include(w => w.ChildTable)
.ToListAsync(); //Output to an async list
}
}
}
}
以下是Index.cshtml
razor页面,其中迭代foreach
的嵌套Model.ParentTable[0].ChildTable
循环从未满足其条件,因为Model.ParentTable[0].ChildTable
在调试期间检查时计数为零因此,不会显示ChildField1
或ChildField2
的数据:
@page
@model Appname.Pages.Request.IndexModel
@{
ViewData["Title"] = "Index";
}
<table class="table">
<thead>
<tr>
<th>
@Html.DisplayNameFor(model => model.ParentTable[0].ParentField1)
</th>
<th>
@Html.DisplayNameFor(model => model.ParentTable[0].ParentField2)
</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model.ParentTable)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.ParentField1)
</td>
<td>
@Html.DisplayFor(modelItem => item.ParentField2)
</td>
<td>
<table class="table">
<tr>
<th>Child Field 1</th>
<th>Child Field 2</th>
</tr>
@foreach (var relatedItem in Model.ParentTable[0].ChildTable)
{
<tr>
<td>
@Html.DisplayFor(modelItem => relatedItem.ChildField1)
</td>
<td>
@Html.DisplayFor(modelItem => relatedItem.ChildField2)
</td>
</tr>
}
</table>
</td>
<td>
<a asp-page="./Edit" asp-route-id="@item.ParentTableid">Edit</a> |
<a asp-page="./Details" asp-route-id="@item.ParentTableid">Details</a>
</td>
</tr>
}
</tbody>
</table>
以下是ParentTable
型号:
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Appname.Models
{
public partial class ParentTable
{
[Key]
public long ParentTableid { get; set; }
public string ParentField1 { get; set; }
public string ParentField2 { get; set; }
public ICollection<ChildTable> ChildTable { get; set; }
}
}
...和ChildTable
模型,使用EF Core的非标准ID命名约定,因为该字段是如何在数据库中设计的,这是很久以前编写的(不是确定这是问题的一部分,还是我的关键字段设置错误):
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Appname.Models
{
public partial class ChildTable
{
public long nonstandardidfield { get; set; }
public string ChildField1 { get; set; }
public string ChildField2 { get; set; }
[ForeignKey("nonstandardidfield")]
public ParentTable ParentTable { get; set; }
}
}
感谢您的时间。
答案 0 :(得分:0)
在我看来,你只是在每个迭代第一个模型的ChildTable项目。
更改此内容:
@foreach (var relatedItem in Model.ParentTable[0].ChildTable)
{
<tr>
<td>
@Html.DisplayFor(modelItem => relatedItem.ChildField1)
</td>
<td>
@Html.DisplayFor(modelItem => relatedItem.ChildField2)
</td>
</tr>
}
要强>
@foreach (var relatedItem in item.ChildTable)
{
<tr>
<td>
@Html.DisplayFor(ri => relatedItem.ChildField1)
</td>
<td>
@Html.DisplayFor(ri => relatedItem.ChildField2)
</td>
</tr>
}