This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
No data query in IOfflineTable #542
Answered
by
michaelcoelsch
michaelcoelsch
asked this question in
Q&A
-
If using an IOfflineTable, i do not have the ".ToListAsync()" Method to query data in that table. On IRemoteTable i have the ".ToListAsync()" Method and can query the table. How can i query data properly from an IOfflineTable in Azure Mobile Apps?? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
michaelcoelsch
Dec 30, 2022
Replies: 1 comment
-
Found the solution. I had to add System.Linq.Async from Nuget. Overseen this in the documentation. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
michaelcoelsch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Found the solution.
I had to add System.Linq.Async from Nuget.
That gave me ".ToListAsync<>()" on the IOfflineTable
Overseen this in the documentation.