Replies: 2 comments 5 replies
-
Here is the documentation you require: https://communitytoolkit.github.io/Datasync/in-depth/client/index.html#configuring-entities-to-synchronize |
Beta Was this translation helpful? Give feedback.
5 replies
-
All working well. Need to consider modifications (adding/removing fields) and updating the app service. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
Ages ago, we were able to do this:
await _appointmenttable.PullItemsAsync(_appointmenttable.Where(a => a.UserId == Settings.UserId && a.AnotherParam == Settings.AnotherParam));
Looking at PullAsync and the overloads, is there a way to do something similar? Maybe using the PullRequestBuilder and/or PullOptions?
PullResult pullResult = await this.PullAsync(pullRequestBuilder, pullOptions, cancellationToken); //something like that?
Cannot find documentation on using those overloads or the params.
OR - are we supposed to use this (below link) for more specific pushpull operations? I don't need a fulltime online client since users don't always have connectivity. But when they PULL, they should only get their own records (obviously).
https://communitytoolkit.github.io/Datasync/in-depth/client/online-operations/index.html
Any example would help!!
@adrianhall - incase you see this ...
Beta Was this translation helpful? Give feedback.
All reactions