以下は私のクラスです。
public class MyGroceryListItems
{
public int ProductId { get; set; }
public string ProductName { get; set; }
public int Quantity { get; set; }
}
今、データベースからこのクラスの値を取得し、それらのクラスを に入れていますIList<MyGroceryListItems>
。id
ただし、数量が同じでも数量が異なる重複商品がいくつかあります。によって個別のエントリのみを取得するにはどうすればよいid
ですか?
list.distinct を試しましたが、同じ製品 ID を持つレコードですべてのエントリが同じであるとは限らないため、うまくいきませんでした。