5

一段时间以来一直在为此苦苦挣扎。

我正在涉足 WebAPI 世界,我有一个可以包含名称相同但价格不同的产品的列表。我需要做的是删除对产品的所有引用,因为价格会发生变化。

例如。
name = "Cornflakes" Price = "1.99M"
name = "Cornflakes" Price = "1.89M"
name = "Rice Krispies" Price = "2.09M"
name = "Cornflakes" Price = "2.09M"

我的最终清单中不应出现任何玉米片。

我已经写了大部分内容,但是它删除产品太快了,我不确定应该在哪里删除它们。

public IEnumerable<Product> GetProductsByCategory(int Id)
    {
        List<Product> sourceProductList = products.Where(p => p.CategoryID == Id).ToList();
        List<Product> tempProducts = new List<Product>();
        List<Product> targetProductList = new List<Product>();

        foreach (var product in sourceProductList)
        {
            bool isInTempList = tempProducts.Any(x => x.Name == product.Name);
            if (!isInTempList)
            {
                tempProducts.Add(product);
            }
            else
            {
                Product tempProduct = product;
                bool isPriceDifferent = tempProducts.Where(y => y.Name == tempProduct.Name).Any(y => y.Price != tempProduct.Price);
                if (isPriceDifferent)
                {
                    tempProducts.RemoveAll(p => p.Name == product.Name); 
                    // too soon as I may have lots of products with the same name
                    // but need to remove based on product.Name
                }
            }
        }
        targetProductList.AddRange(tempProducts);

        return targetProductList;
    }

任何帮助将不胜感激。

注:可提供其他谷物

4

4 回答 4

12

试试这个 LINQ 表达式,它只会选择具有不同价格的产品:

var result = sourceProductList
    .GroupBy(x => x.Name)
    .Where(g => g.Select(x => x.Price).Distinct().Count() == 1)
    .Select(g => g.First());

在线查看它:ideone

于 2012-10-11T13:18:51.437 回答
2

请试试这个:

class Program
    {
        static void Main(string[] args)
        {
            var list = new List<Product>
                {
                    new Product() {Name = "Cornflakes", Price = 100},
                    new Product() {Name = "Cornflakes", Price = 200},
                    new Product() {Name = "Rice Krispies", Price = 300},
                    new Product() {Name = "Cornflakes", Price = 400}
                };

            var uniqueItems = list.Where(w => (!list.Any(l=>l.Name.Equals(w.Name) && l != w)));

        }

        public class Product
        {

            public string Name { get; set; }
            public decimal Price { get; set; }
        }
    }

结果,您将只有一个“Rice Krispies”项目。我相信它会比使用 GroupBy 和 Distinct 的解决方案更快,因为我们不需要在你的情况下做这些不必要的事情。

工作代码 - http://ideone.com/X8A3v

于 2012-10-11T13:26:17.277 回答
1

像这样的东西(徒手所以可能是稍微错误的语法):

var toRemove = sourceProductList
    .GroupBy(p => p.Name)
    .Where(g => g.Count() > 1)
    .SelectMany(g => g)
    .GroupBy(p => p.Price)
    .Where(g => g.Count() > 1)
    .SelectMany(g => g.Select(p => p.ID))
    .Distinct()
    .ToList();
toRemove.ForEach(id => sourceProductList.RemoveAll(p => p.ID == id));
于 2012-10-11T13:21:00.453 回答
1

这应该像按名称分组一样简单,只获取组中仅存在 1 个项目的那些:

var filtered = list.GroupBy(i => i.Name)
      .Where(i => i.Count() == 1)
      .SelectMany(x => x)

现场示例:http ://rextester.com/AUBOHU96105

于 2012-10-11T13:23:45.057 回答