EFCore + Razor页面:嵌套的foreach循环迭代.included数据集返回零结果

时间:2018-03-26 15:49:07

标签: c# linq entity-framework-6 asp.net-core-mvc razor-pages

我正在尝试制作一个由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在调试期间检查时计数为零因此,不会显示ChildField1ChildField2的数据:

@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; }
    }
}

感谢您的时间。

1 个答案:

答案 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>
}