dyna-record
    Preparing search index...

    Interface JoinTableOptions

    Options for JoinTable operations

    interface JoinTableOptions {
        referentialIntegrityCheck?: boolean;
    }
    Index

    Properties

    referentialIntegrityCheck?: boolean

    Whether to perform referential integrity checks for foreign key references. When true (default), condition checks are added to verify that referenced entities exist. When false, these condition checks are skipped, allowing updates even if foreign key references don't exist.

    true