-
-
Notifications
You must be signed in to change notification settings - Fork 251
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
One to Many Relationships not supported #202
Comments
Yes, I can confirm that. We're still working on the support of |
Thank you for the confirmation. Keep up the good work, IceCream it's awesome! |
One last question, Is the |
Yes, as it said in the
|
@caiyue1993 The README file only mentions the |
Let me clarify this. The |
Again, I'm using |
I'm currently spending my leisure time working on this feature. It makes sense and you could try looking at the #206 in advance. |
Hi @fstigre, Please refer to the README for the detailed usage. Just let me know if you encounter other issues. Thank you again. |
First of all, let me thank you all for the awesome framework, I can't believe how easy it is to sync data with
IceCream
it is really like magic.I currently have a project where I'm using a One-to- many relationships in Realm using the List method
let dogs = List<Dog>()
but I tried it andIceCream
does not create the right relationship inCloudKit
dashboard.Can someone please confirm that
let dogs = List<Dog>()
is not supported inIceCream
and that the only option would be using the LinkingObject option,let dogs = LinkingObjects(fromType: Dog.self, property: "owner")
?Thanks a lot!
The text was updated successfully, but these errors were encountered: