我有一个 ProductDetailDTO 类型的列表。
List<ProductDetailDTO> productDTOs;
public class ProductDetailDTO
{
public int ProductId { get; set; }
public string Name { get; set; }
public string Category { get; set; }
public byte[] Image { get; set; }
public string Description { get; set; }
public string Brand { get; set; }
public string GUID { get; set; }
public string VariantName { get; set; }
public string VariantValue { get; set; }
public decimal Price { get; set; }
}
现在,我想一起显示具有相同 GUID 的所有变体(VariantName 和 VariantValue)。我怎样才能做到这一点?
BIG阳
白板的微信
相关分类