本文介绍了我可以像 Pair<loan_amount,adv_interest_amount> 一样从房间查询中获取数据吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道我可以通过使用数据类来做到这一点,但我想实现这样的
// This is My Query
@Query("SELECT loan_amount,adv_interest_amount FROM new_pledge_receive WHERE (new_pledge_receive.bill_date BETWEEN :fromDate AND :toDate)")
fun getPledgeReceiveAmount(fromDate: Long,toDate: Long):LiveData<List<Pair<Double,Double>>> ```
推荐答案
Pair 类有 2 个属性:first
和 second
.尝试设置所选列的名称以适合这些名称.
Pair class has 2 properties: first
and second
. Try to set the name of the selected columns to fit these names.
类似于:SELECT my_custom_field 作为第一个,my_another_field 作为第二个 FROM...
这篇关于我可以像 Pair<loan_amount,adv_interest_amount> 一样从房间查询中获取数据吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!