我下面的代码从Room数据库返回实时数据。
@Dao
public interface CustomersDao {
@Transaction @Query("SELECT * FROM Customers ORDER BY Customers.Name ASC LIMIT :index,:fetchPace")
LiveData<List<Customers>> fetchNextCustomers(int index, int fetchPace);
}
在我的仓库中我有这个:
public LiveData<List<Customers>> fetch(int index,int fetchPace){
return mDatabase.repoCustomers().fetchNextCustomers(index,fetchPace);
}
我的问题: