[CB 5.2.0+791] (not a) Complete Nubie looking for Crud solution CBORM and Quick

I’m a bit new.

Is Quick ORM and CBORM compatable, do they work together?

I tried to use html.entityFields() with a Quick Entity but that didn’t work.

(Just trying to get to the Rapid part of app development with CF again)

If I wanted a simple CRUD example where would I find it? Forgebox maybe? (former links to repositories are empty)

Quick is a separate implementation than hibernate so I dont’ think it works with the HTML helper’s functions designed to use with CF’s inbuilt ORM. That said, the HTML Helper functions me be able to be refactored to work with Quick as well, but as Quick is rather new I’m not sure anyone’s asked about that yet.

OK So there’s a leap in logic I must be missing with Quick

There’s an example line in the documentations that looks something like this:

`
var users = getInstance( “User” ).all();

// users is a QuickCollection. To get an array,
// first call get or toArray
for ( var user in users.get() ) {
writeOutput( user.getUsername() );
}

`

I don’t have Username in my collection but I do have Id but if I try to use getId for my collection that function doesn’t exist.

Does the documentation assume that getUsername function is added already.

Maybe this is created using the CFmigrations file that I guess I skipped while working on just my integration?

But I’m just guessing