-
-
Notifications
You must be signed in to change notification settings - Fork 261
New issue
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
Missing methods in Parse .NET SDK 4.0 #397
Comments
Thanks for opening this issue! |
Hi @patkozlowski |
@YBTopaz8 could you please also add the tests for these fixes? It seems these issues were not caught by the CI because of the low test coverage. Thanks to @patkozlowski for reporting, that helps us to improve the coverage. |
Absolutely. I've fixed all issues pointed out (in fact, 2 of 3 were fixed by a PR I was about to do today.) I fixed the 3 one (an oversight led to an overflow.) |
Just submitted #402 that clears your issues and any other potential one. @patkozlowski truly appreciate your feedback |
Did some general enhancements on the code structure it's more consistent (Working on `object` types are cool but a pain to debug since you never know the real type until you hit an exception.) I tried to make it so the code is more readable as well. Closes #397
Thanks for the quick turn around @YBTopaz8, great work! |
Thanks @patkozlowski When it will be released, you will be able to use Relations and Pointers as intended. This file has a full implementation of the core Parse Functionalities (login, save file, CRUD parse objects and Relations, call cloud code function, and much more!) Plus, It shows how Parse Live Queries are implemented in .NET by myself as well, using RX.NET so when it will be available in official parse for .NET, we will all enjoy it. I'll be using that repo as the Sample Repo when redoing the documentation anyway. Hopefully before New Year but time will tell. Best. |
Quickly Pinging to say please expect some updates this week (Got caught up here and there) I aim to bring some more improvements I've been working on personally Sorry for the delay! |
Issue when upgrading to Parse SDK 4.0
After upgrading to Parse SDK 4.0, I've run into a few issues due to changes in the API. Here’s what I’ve encountered:
user.Username
is no longer accessibleUsername
field directly withuser.Username
, but in version 4.0, that field seems to be missing. The following code no longer works:user.GetRelation<ParseObject>("SomeClass")
is no longer availableGetRelation<ParseObject>("SomeClass")
no longer works. I'm unsure how to handle relations in version 4.0 since it seems like this method was changed or removed. Here’s the code that no longer functions:await user.SaveAsync()
is no longer workingSaveAsync()
is no longer available onParseUser
objects directly. The following code no longer works:Environment
Any guidance or clarification on these issues would be greatly appreciated! Thanks in advance. Maybe @YBTopaz8 can help? Thanks!
The text was updated successfully, but these errors were encountered: