Ticket T1022100
Visible to All Users

Why Deferred Deletion does not use the GCRecord field to store a parent object when deleting child objects

created 4 years ago (modified 4 years ago)

[DevExpress Support Team: CLONED FROM A753: How to restore deleted objects (records)]

Why do you use a different random value for the GCRecord-Field to mark the child-objects as deleted? If you would use the value from the master, it might be easier to detect, which deleted child-objects had belonged to the master (although the reference isn't available). The challenge would be, to have a random and unique (for the specific class of the master-object) value …

Comments (1)
M M
Michael Gibson - PatTrac 4 years ago

    The would certainly make a very tedious process much more manageble.

    Answers approved by DevExpress Support

    created 4 years ago

    Hello Frank,

    Please note that XPO classes can have more than one parent property. For example:

    C#
    public class Product : XPObject { public Product(Session session) : base(session) {} Supplier fSupplier; public Supplier Supplier { get => fSupplier; set => SetPropertyValue(nameof(Supplier), ref fSupplier, value); } Category fCategory; public Category Category { get => fCategory; set => SetPropertyValue(nameof(Category), ref fCategory, value); } }

    We do not store references to parent objects anywhere because we did not intend the Deferred Deletion feature to support restoring deleted records.

    As for the GCRecord field, it is not the right place to store old references. We set the GCRecord field to a random value to allow using unique constraints when the Deferred Deletion feature is enabled.

    The following example demonstrates a problem with unique constraints and Deferred Deletion:

    1. Create a Category table with the CategoryName column that has a unique constraint.
    2. Insert a "Category A" category.
    3. Delete the "Category A" category using the Deferred Deletion feature.
    4. Now you cannot insert another "Category A" category unless you physically delete the previous category from the database.

    The solution to this problem is adding the GCRecord field to a unique index.

      Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

      Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.