赞
踩
BigDecimal
转换到 MongoDB 时会变成 String
Sort sort = Sort.by(Sort.Direction.DESC, "pay_money");
query.with(sort)
// String to Number sort
.collation(Collation.parse("en_US").numericOrdering(true));
db.t_instance_order.find({}, {instance_type: 1, pay_money: 1})
.sort({instance_type: 1, pay_money: -1})
.collation({locale: "en_US", numericOrdering: true})
.limit(10);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。