按条件选择行以填充列表

本文关键字:填充 列表 条件 选择 | 更新日期: 2023-09-27 18:12:20

我有一个列表Users,我想选择那些有Username的行来填充Users列表。

例如,Users列表包含"joe"answers"marry"。我想选择有Username字段为"joe"或"marry"的行。我该怎么写呢?

List<string> Users = new List<string>() {"joe", "marry"};
model = model.Where(r => r.UserName ???

按条件选择行以填充列表

试试这个:

model = model.Where(r => Users.Contains(r.Username));