gpt4 book ai didi

c# - LINQ IEnumerable 中的语法

转载 作者:太空宇宙 更新时间:2023-11-03 11:29:41 25 4
gpt4 key购买 nike

这是我的代码,效果很好:

  IPRepository rep = new IPRepository();
var Q = rep.GetIp()
.Where(x => x.CITY == CITY)
.GroupBy(y => o.Fam)
.Select(z => new IpDTO
{
IId = z.Key.Id,
IP = z.Select(x => x.IP).Distinct()
});

IP 是 IEnumerable<string>

  1. 我需要在上面的代码中添加对函数的调用 PAINTIP(ip) .
  2. 我需要将 IP 中的每个元素发送给一个函数 PAINTIP(ip) .因此我需要使用某种 foreach 函数,但我不知道如何使用。

最佳答案

rep.GetIp()
.Where(x => x.CITY == CITY)
.GroupBy(y => o.Fam)
.Select(z => new IpDTO
{
IId = z.Key.Id,
IP = z.Select(x => x.IP).Distinct()
})
.SelectMany(item => item.IP)
.ToList()
.ForEach(PAINTIP)

关于c# - LINQ IEnumerable<string> 中的语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8240877/

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