Libraries
    Preparing search index...

    Type Alias RowVersionStrategy

    RowVersionStrategy: "increment" | "timestamp" | "manual"

    Concurrency-token strategy stored by .rowVersion().

    • 'increment' — ORM increments an integer counter on each UPDATE.
    • 'timestamp' — ORM sets the value to new Date() on each UPDATE.
    • 'manual' — caller supplies the new value; ORM only enforces the check.