You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to write reference links on deep insert as seen here, it throws on #ToDictionary(...) for navigation keys that per the schema have Nullable=false, but you can actually omit them and let the API generate them (we disable validations).
documentType and no can be omitted and generated by the API (despite being non-nullable per schema), however, when deep inserting with purchaseInvoiceLines, it attempts to create links and fails as it can not get them.
Anyone have any workaround that does not include having to insert invoice lines one by one?
The text was updated successfully, but these errors were encountered:
When attempting to write reference links on deep insert as seen here, it throws on #ToDictionary(...) for navigation keys that per the schema have
Nullable=false
, but you can actually omit them and let the API generate them (we disable validations).Take for example schema:
documentType
andno
can be omitted and generated by the API (despite being non-nullable per schema), however, when deep inserting withpurchaseInvoiceLines
, it attempts to create links and fails as it can not get them.Anyone have any workaround that does not include having to insert invoice lines one by one?
The text was updated successfully, but these errors were encountered: