gpt4 book ai didi

c# - Linq( Entity Framework )select中如何选择

转载 作者:行者123 更新时间:2023-11-30 14:53:20 25 4
gpt4 key购买 nike

我为我的数据库使用 Entity Framework 并选择或/并包含显示如此多的数据,所以基本上我正在寻找这样的查询:

var result = DbContext.products
.select(p=> new {
p.Id,
p.Name,
p.Notes
.select(n=> new {
n.date,
n.text
}
});

最佳答案

您可以使用此代码:

var result = DbContext.products
.select(p=> new {
Id = p.Id,
Name = p.Name,
SelectedNodes = p.Notes.select(n=>
new {n.date, n.text}).ToList()
});

关于c# - Linq( Entity Framework )select中如何选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29760943/

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