I use Anko to operate SQLite table, I hope to sort a list based the field isFavorite
first, then based the createdDate
For example, input Source Data, and I get the Sort Result Data
But the code return myList.sortedBy{it.isFavorite}.sortedBy{ it.createdDate}
can't get the correct result, how can I fix it?
Source Data
Sort Result Data (I hope to get )
Structure
data class MRecord (
var _id: Long,
var isFavorite: Bool,
var createdDate: Long
)
Code
var myList=select(tableName).parseList { MDBRecord(HashMap(it)) }
return myList.sortedBy{it.isFavorite}.sortedBy{ it.createdDate}
Added Content
To madhead: Thanks!
data class MRecord(
var id: Long,
var isFavorite: Long,
var createdDate: Long
)
val list = listOf(
MRecord(1, 1, 100),
MRecord(2, 0, 200),
MRecord(3, 1, 300)
)
I hope to get the result
1, 1, 100
3, 1, 300
2, 0, 200
but the code println(list.sortedWith(compareBy({ !it.isFavorite }, MRecord::createdDate)))
will not work because isFavorite is Long, how can I fix it?
You're right,
myList.sortedBy{it.isFavorite}.sortedBy{ it.createdDate}
will not give you correct results, because it is basically equal tomyList.sortedBy{ it.createdDate}
(only the last sorting applies). What you need is a comparator that takes multiple fields into account and looks likecompareBy
is what you need:So, check this out:
Note how you can mix lambdas and function references.
Edit for
Long
isFavorite: