1

私はこのオブジェクトを持っています:

public class humanInfo
{
    public string m_Name { get;set; }

    public List<HumanAttributes> m_ListHumanAttributes { get; set;}
}

Age各人間の属性のリストにある属性に基づいて、このリストを並べ替えたいと思います。

humanList = humanList.OrderBy(/*How am I gonna do this?*/);

x => x.m_ListHumanAttributes.All()たとえば、を使用してすべてのアイテムを取得しようとしましたが、どうすればよいかわかりません。誰にも良い考えがありますか?

編集

HumanAttributesクラスがどのように機能するかについてのアイデアは次のとおりです。

public class HumanAttributes
{
    public int m_HumanAttributesID {get;set;}

    public Sex m_HumanAttributeSex {get;set;}

    public int m_HumanAge {get;set;}

    public decimal m_HumanHeight {get;set;}
}
4

1 に答える 1