EFCore:根据相关实体中字段的最大值查询相关实体

时间:2018-12-11 23:04:39

标签: sql-server entity-framework-core razor-pages ef-core-2.2

我需要根据相关实体的字段中的最大值查询相关实体,然后显示该项目的结果。

例如,定义模型:

public class Student
{
    public int StudentID {get; set;}
    public string Name {get; set;}
    public ICollection<ReportCard> ReportCards {get; set;}
}

public class ReportCard
{
    public int ReportCardID {get; set;}
    public int ProjectID { get; set; }
    public Project Project { get; set; }
    public int Result {get; set;}
    public int Comment {get; set;}
    public DateTime PublishDate {get; set;}
}

在剃须刀控制器中:

public class LatestResultsModel : PageModel
{
    ...
    public IList<Student> Students {get; set;}
    public async Task<IActionResult> OnGetAsync()
    {
        Students = await _context.Student
                                 .Include(student => student.ReportCard)
                                 .ToListAsync();
    }
}

在剃须刀视图中:

@foreach (Student student in Model.Students)
{
    <p>@student.Name</p>
    <p>@student.ReportCard.Max(i => i.PublishDate).Result.ToString()</p>
}

在Max语句之后,我无法查询其他字段。 我已经尝试了一些方法来实现过滤相关数据的结果。

Filtered Includes are not supported.

是否存在某种可以实现此结果的联接?

当学生没有ReportCard时,它也无法处理这种情况。 InvalidOperationException:可为空的对象必须具有一个值。

1 个答案:

答案 0 :(得分:0)

  

在Max语句之后,我无法查询其他字段。我已经尝试了一些方法来实现过滤相关数据的结果。

是的!你不能!因为Max语句仅选择您在Max中提到的字段。

  

当学生没有ReportCard时,它也无法处理这种情况。 InvalidOperationException:可为空的对象必须具有一个值。

执行以下操作以克服这两个问题:

@foreach (Student student in Model.Students)
{
    <p>@student.Name</p>

    if(student.ReportCards.Count > 0)
    {
      <p>@student.ReportCards.OrderByDescending(rc => rc.PublishDate).FirstOrDefault().Result.ToString()</p>

      <p>@student.ReportCards.OrderByDescending(rc => rc.PublishDate).FirstOrDefault().PublishDate.ToString()</p>
    }
    else
    {
      <p>Student has no report card!</p>
    }

}