从List <t> C#</t>获取结果

时间:2013-07-04 18:04:39

标签: c# list select collections intersection

我试图在对象列表中找到基本类型的代码,并将结果放入新列表中。

我一直在谷歌寻找类似的东西,但每个人都谈到列表之间的交集,我想要这样的东西。

            int AssocCode = 2;
            //Entity.ID
            //Entity.Name
            //Entity.AssociationCode
            List<Entity> list = new List<Entity>();
            list.Add(new Entity(1, "A", 1));
            list.Add(new Entity(2, "B", 2));
            list.Add(new Entity(3, "C", 3));
            list.Add(new Entity(4, "D", 2));
            list.Add(new Entity(5, "E", 2));

            /*I want the results for finding that code inside the collection**/
            List<Entity> newList = list .... find/intersect/select/remove/whatever (x => x.AssociationCode = AssocCode);

3 个答案:

答案 0 :(得分:4)

int associationCode = 1;

List<Entity> newList = list.Where(e => e.AssociationCode == associationCode).ToList();

值得一提的是,如果您需要立即取得结果,则只应致电ToList()

如果您不需要立即获得结果,那就更好了。

IQueryable<Entity> entities = list.Where(e => e.AssociationCode == associationCode);

然后,您可以进一步过滤,而无需点击数据库。

答案 1 :(得分:0)

这应该这样做:

var newList = list.Where(e => e.AssociationCode == AssocCode).ToList()

答案 2 :(得分:0)

我在1分钟前解决了我的问题。这是这样的。

            List<Entity> newList =list.FindAll(item => item.AssociationCode == associationCode)

但是现在我看到你的答案PeteGO和我测试了它也有效但最后你新添加了.ToList()

现在我有点困惑。这两者之间有什么不同。

            fullList = this.FullList.FindAll(item => item.AccCompanyID == CompanyCode);
            vs
            fullList = this.FullList.Where(item => item.AccCompanyID == CompanyCode).ToList();