Hi all,
I have an object, Request, with a has-many relationship to RequestItem (aliased to "items). So Request->items is a Simple Resultset.
I see in the docs there is a way to update related records with update(), and delete related records with delete(). Is there any way to add related records in a similar fashion?
I basically want to simply add a new related record to Request, and have Request->items reflect the addition. I was unable to find anything in the docs, which surprised me actually.