美文网首页
错误Not sure how to convert a Curs

错误Not sure how to convert a Curs

作者: 静水红阳 | 来源:发表于2021-12-05 23:07 被阅读0次

    错误描述

    在接入jetpack中的room和paging过程中,遇到了如下编译错误:

    Not sure how to convert a Cursor to this method's return type (androidx.paging.PagingSource
    

    问题临时解决办法

    查找到当前错误发生的语句,我书写的方法如下:

        @Query("SELECT * FROM " + SavedLocationEntity.tableName)
        abstract suspend fun queryAll(): PagingSource<Int,SavedLocationEntity>?
    

    suspend关键字删除后重新执行,问题已解决,原因尚不清晰。

    相关文章

      网友评论

          本文标题:错误Not sure how to convert a Curs

          本文链接:https://www.haomeiwen.com/subject/vwjzaltx.html