一段时间以来一直在为此苦苦挣扎。
我正在涉足 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;
}
任何帮助将不胜感激。
注:可提供其他谷物