gpt4 book ai didi

c# - 在列表中使用 Linq 选择列表

转载 作者:可可西里 更新时间:2023-11-01 07:50:02 26 4
gpt4 key购买 nike

使用 LINQ 如何从列表中的列表中进行选择

public class Model
{
public string application { get; set; }

public List<Users> users { get; set; }
}

public class Users
{
public string name { get; set; }

public string surname { get; set; }
}

List<Model> list = new List<Model>();

我需要选择 list where application = "applicationame"和 users where surname = "surname"到一个列表中。

最佳答案

如果您想按applicationname 筛选模型,按surname 筛选其余模型:

List<Model> newList = list.Where(m => m.application == "applicationname")
.Select(m => new Model {
application = m.application,
users = m.users.Where(u => u.surname == "surname").ToList()
}).ToList();

如您所见,它需要创建新模型和用户列表,因此这不是最有效的方法。

如果您不想过滤用户列表,而是希望按至少有一个用户具有给定用户名的用户过滤模型,请使用 Any:

List<Model> newList = list
.Where(m => m.application == "applicationname"
&& m.users.Any(u => u.surname == "surname"))
.ToList();

关于c# - 在列表中使用 Linq 选择列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14663971/

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