We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var objId = ObjectId.GenerateNewId(); await client1.WriteAsync(() => { client1.Add(new MixedSchema { Id = objId, Name = "Mario", Mixed = new List<RealmValue> { "foo", 10 } }); }); await client2.WriteAsync(() => { var obj = new MixedSchema { Id = objId, Name = "Mario", Mixed = new List<RealmValue> { "bar", 20 } }; client2.Add(obj); obj.Name = "Luigi"; });
This code seems to result in an object with 4 entries in the Mixed list rather than 2.
Mixed
The text was updated successfully, but these errors were encountered:
➤ PM Bot commented:
Jira ticket: RNET-1156
Sorry, something went wrong.
nirinchev
Successfully merging a pull request may close this issue.
This code seems to result in an object with 4 entries in the
Mixed
list rather than 2.The text was updated successfully, but these errors were encountered: