quick icon indicating copy to clipboard operation
quick copied to clipboard

A ColdBox ORM Engine

Results 83 quick issues
Sort by recently updated
recently updated
newest added

If you add a virtual attribute to a parent entity and load a discriminated child entity through that parent entity. The virtual attributes will not be applied to the child...

I discovered an issue when playing around with discriminated entities where casts no longer work, specifically the JsonCast@quick. If I assemble the entity like this, casts work: ``` component extends="quick.models.BaseEntity"...

type: bug

Send the old data of the entity in the preUpdate event. #239

Adds tests for ACF2023 and `coldbox@be`

Being able to create a new `HasOneOrMany` relationship entity is great, but sometimes you need access to the new entity before persistence. Adding a `newEntity()` method gives additional flexibility and...

`hasManyThrough` needs some work to be more performant and produce expected queries. `hasManyDeep` is a ground up rewrite alongside `hasManyThrough`. Eventually we will add a `belongsToDeep` and hopefully even patch...

The following Quick scope is producing an erroneous table prefix for the 'where in' clause. ``` function scopeNotInCloneQueue( query, required string seasonUID ) { return query.whereNotIn( "registrationID", function( sQ )...

I encountered an issue when calling a getter method on a Quick entity relationship that throws the following exception: _Value must be initialized before use._ How to replicate: 1. Create...

quick 7.3.1 quick/models/QuickQb.cfc Hit a case where Quick tries to treat a string as a struct, e.g. in the following, if `values` is something like `{someColumn: "someValue"}` ``` public any...

@elpete, I no longer have access to the Quick documentation on Gitbook for some reason, so I'm posting my suggestion here: On the page: https://quick.ortusbooks.com/guide/getting-started/creating-new-entities#create It is critically important to...