private static UpdateAction GetUpdateActionFromBuilder(IIdoCommandBuilder builder) { var action = builder.GetUpdateAction(); if (action == UpdateAction.None) action = UpdateAction.Update; return action; }
private UpdateCollectionRequestData getNestedUpdate(IIdoCommandBuilder builder, IdoItemWrapper idoItemWrapper) { PropertyPair linkBy = null; if (builder.GetLinkBy().Length > 0) linkBy = builder.GetLinkBy()[0]; var data = new UpdateCollectionRequestData(builder.GetIDOName()); var idoUpdateItem = getUpdateItem(builder, builder.GetUpdateAction(), idoItemWrapper); idoUpdateItem.ItemID = idoItemWrapper[IdoConstants.KEY].ToString(); //not needed!!! data.Items.Add(idoUpdateItem); if (linkBy != null) data.SetLinkBy(linkBy.ParentProperty, linkBy.ChildProperty); return data; }