LoginSignup
0
0

ApexでカスタムオブジェクトのListをソート

Posted at

なぜかカスタムオブジェクトのソートがSOQLのORDER BYで効かないことがあり、対策としてこちら

private class XXXInfoAccountIdComparator implements Comparator<XXXInfo__c> {
    public Integer compare(XXXInfo__c x1, XXXInfo__c x2) {
      return x1.AccountId__c.compareTo(x2.AccountId__c);
    }
  }
xxxList.sort(new XXXInfoAccountIdComparator()); // なぜかORDER BYが効かない場合がある(!)ので追加
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0