2
public class MySoft
{
public string SoftName { get; set; }
public int Version { get; set; }
public decimal Price { get; set; }
}
は、私が「MySoft」のリストを持っているラムダ式を持つ複数のレコードから最大値を取得します。(softname、バージョン、価格)件のデータとして
SoftA 1 25
SoftB 1 35
SoftB 2 12
SoftB 3 24
SoftA 2 14
私が好きな名前、価格を維持し得るとバージョンが最も高いバージョン。
結果は次のようになります。
SoftA 2 14
SoftB 3 24
あなたのアイデアを持っていますか?
おかげで、名前で