gpt4 book ai didi

c# - Entity Framework 核心 : Access parent from child

转载 作者:行者123 更新时间:2023-12-03 16:03:49 26 4
gpt4 key购买 nike

可能是一个愚蠢的问题,但我在这里有点困惑。

我有一个包含 child 列表的父实体。

public class Parent
{
public int Id { get; set; }

public List<Child> Children { get; set; }
}

public class Child
{
public int Id { get; set; }
}

EFcore 将创建一个 ParentId作为表中的外键 Child .

现在,假设我想检索所有具有特定父级的 child ,我该怎么做? ParentIdChild 中不可用目的。

因此,我不能做这样的事情:
var result = model.Child.Where(child => child.ParentId == 3);

我可以添加 ParentId属性给实体中的 child ,但我真的不希望手动分配这个属性。如果我仅通过指定 getter 将其设置为只读,则迁移将不再起作用。

最佳答案

EF Core 允许您访问关联的 shadow property在 LINQ to Entities 查询中使用 EF.Property方法:

Addresses a given property on an entity instance. This is useful when you want to reference a shadow state property in a LINQ query. Currently this method can only be used in LINQ queries and can not be used to access the value assigned to a property in other scenarios.



您只需要知道名称和类型 - 在您的情况下,它们是“ParentId”和 int? (可选的):
var result = model.Child.Where(child => EF.Property<int?>(child, "ParentId") == 3);

关于c# - Entity Framework 核心 : Access parent from child,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56367475/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com