I have an Invoice object, it has Invoice Items. The Invoice Items is a many-valued collection. The invoice itself has 0 id so it should save, but there are aggregates that exist in the db but are transient. So I used replicate on the Invoice so it merges existing objects from db and saves the new objects. The problem here is the Invoice Items are not fully saved. All of the items have 0 as id but it only saves the first item and the next items became invalid, 0 id and nil aggregates.
Notes:
- I removed some aggregates from TAureliusInvoice to make it concise.
- I found out that it successfully saves all items when I sometimes go to debug, step to Replicate and try to inspect the Invoice and its aggregate in the IDE, and continue execution. I assessed that it could be a memory leak problem. But at this point, I don't have any idea.
[Entity]
[Table('Invoice')]
[Id('Id', TIdGenerator.IdentityOrSequence)]
TAureliusInvoice = class
private
FId: Integer;
FItems: TObjectList<TAureliusInvoiceItem>;
public
constructor Create(
const AId: Integer;
const AItems: TObjectList<TAureliusInvoiceItem>;);
[Column('Id', [TColumnProp.Unique, TColumnProp.Required])]
property Id: Integer read FId write FId;
[ManyValuedAssociation([TAssociationProp.Required], CascadeTypeAll)]
[ForeignJoinColumn('ItemInvoiceId', [TColumnProp.Required])]
property Items: TObjectList<TAureliusInvoiceItem> read FItems write FItems;
end;
[Entity]
[Table('InvoiceItem')]
[Id('Id', TIdGenerator.IdentityOrSequence)]
TAureliusInvoiceItem = class
private
FId: Integer;
FTransactionId: Integer;
FQuantity: Integer;
FItem: TAureliusItem;
FPrice: Currency;
FDiscounts: TObjectList<TAureliusTransactionItemDiscount>;
public
constructor Create(
const AId: Integer;
const ATransactionId: Integer;
const AItem: TAureliusItem;
const AQuantity: Integer;
const APrice: Currency;
const ADiscounts: TObjectList<TAureliusTransactionItemDiscount>);
function GetItemRefId: Integer;
function GetItemId: Integer;
[Column('Id', [TColumnProp.Unique, TColumnProp.Required])]
property Id: Integer read FId write FId;
property TransactionId: Integer read FTransactionId write FTransactionId;
[Association([TAssociationProp.Required], [TCascadeType.Refresh])]
[JoinColumn('ItemId', [TColumnProp.Required])]
property Item: TAureliusItem read FItem write FItem;
[Column('Quantity', [TColumnProp.Required])]
property Quantity: Integer read FQuantity write FQuantity;
[Column('Price', [TColumnProp.Required])]
property Price: Currency read FPrice write FPrice;
[ManyValuedAssociation([TAssociationProp.Required], CascadeTypeAll)]
[ForeignJoinColumn('TransactionItemId', [TColumnProp.Required])]
property Discounts: TObjectList<TAureliusTransactionItemDiscount> read FDiscounts write FDiscounts;
end;