I have a Sale object that has a PK 'SaleID'. Before a Sale is saved, I have to call a proc to get the SaleID and apply that to Sale.SaleID. SaleID is recognized by the designer as the PK / FK on children.
The Sale has a child object SaleInfo linked on SaleInfo.SaleID = Sale.SaleID. SaleInfo has a child MoreSaleInfo linked on both SaleID AND SaleInfoID PKs.
Question:
When I call Sale.Save() , I can set the SaleID. Does this setting of Sale.SaleID automatically update the SaleInfo.SaleID and and MoreSaleID.SaleID?