othercorey

Results 200 comments of othercorey

> That could work for now since we store the properties in an array but what if we were to have an entity implementation which uses actual object properties? In...

Do we want to introduce anything in 4.4 for this?

The scenario I thought of is checking association properties. The association could be loaded and the entity null if no matching join.

> You can also have a base entity and use a trait for what u need See e.g. https://github.com/dereuromark/cakephp-shim/blob/master/src/Model/Entity/ReadTrait.php If all entities extend that base class, This would be something...

Marked the CallbackStatement item done.

I mentioned this on discord, but for the issue: > Adding deprecation warnings to methods which deal with results buffering where possible in 4.x. > Database\Query\enableBufferedResults() I prefer we document...

I think this set of changes is complete. We need to work on some 5.0 documentation, but there are also more changes to come.

> Adding deprecation warnings to methods which deal with results buffering where possible in 4.x. - Database\Query\enableBufferedResults() and related methods - ORM\Query::count() Are these still pending?

Why can't you use call this with the existing `FunctionsBuilder`?

For postgresql, CONCAT() throws an error when passing parameters via a prepared statement about an unknown type. I assume for CONCAT_WS(), we'd have to cast each parameter to a string...