Replies: 1 comment 6 replies
-
@Diledio it would help if you can provide the version you are using. I also use an Id to filter the data maybe my issue is related. With version 1.0.0-beta-1517 it seem there is never an upload happening in case of Also tried with version 0.9.8. It looks like 0.9.8 works a bit better in case of
I will try to provide a minimal example as soon as I knows which version makes most sense right now. |
Beta Was this translation helpful? Give feedback.
-
Hello guys!
I have one quastion that i am not solving,
i am developing an app in xamarin working with sql lite and get also a sql server to get and insert data using this dotmim.sync,
For example this app is using by 10 users and each user now get and insert data without any problem but what i want is to sync data for each specific user, in this xamarin app user login and after login is the sync button to get and insert data, but i want to sync data for this user who login because for now it sync all data, i add filter but still nothing worked, hope i can get a answer thank you
Here is the code behind in the button clicked event after he login
private async void Button_Clicked_1(object sender, EventArgs e)
{
Here int userId = Global.loginId; is the current user who logged in and here the parameters var parameters = new SyncParameters
{
here is the code in server side
public void ConfigureServices(IServiceCollection services)
{
try
{
Beta Was this translation helpful? Give feedback.
All reactions