如何重构linq ..? [英] How to refactor in linq..?

查看:81
本文介绍了如何重构linq ..?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

public List<carlistviewmodel> GetFilter(List<string> HondaCustomer, List<carlistviewmodel> CarList)
        {
            List<carlistviewmodel> List = new List<carlistviewmodel>();
            
                foreach (string Hcustomer in HondaCustomer)
                {
                    foreach (CarListViewModel detail in CarList)
                    {
                        if (detail.CustomerName == Hcustomer)
                        {
                            List.Add(detail);

                        }
                    }
                }
            

            return List;
        }





我的尝试:





What I have tried:

public List<carlistviewmodel> GetFilter(List<string> HondaCustomer, List<carlistviewmodel> CarList)
        {
            List<carlistviewmodel> List = new List<carlistviewmodel>();
            
                foreach (string Hcustomer in HondaCustomer)
                {
                    foreach (CarListViewModel detail in CarList)
                    {
                        if (detail.CustomerName == Hcustomer)
                        {
                            List.Add(detail);

                        }
                    }
                }
            

            return List;
        }

推荐答案

如果我理解正确的问题,我认为您正在寻找:

If I understand the question correctly I think you are looking for:
List<carlistviewmodel> List = CarList.Where(detail => HondaCustomer.Contains(detail.CustomerName)).toList();


这篇关于如何重构linq ..?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆