ModelManager
ModelManager copied to clipboard
Model Manager for the Pomm database framework.
I don't see roadmap/todo file in repositories. As I understand currently you only make bugfixes and code is frozen until 2.0 stable. Could you please create resource/codument with description of...
Hello, Is it possible to create a set of interfaces which assure that a model class implements methods of `ReadQueries` or / and `WriteQueries` traits ? It would be nice...
In some cases, when using a composite field type and `PgEntity` converter, a nullable field will be converted to an empty string. This is the case when the nullable field...
I tried to extends a model, but can't done it without defining a new flexibleEntity. Without this new flexibleEntity, I got an error : A converter named \'\Database\OrganizationSchema\People\' already exists
In the doc, it is writen to use the collection filters for to transform json value to an object instance. But if I use the example: https://github.com/pomm-project/ModelManager/blob/2.0/documentation/model_manager.rst#collection-filters I have an...
Sometimes in big and complex schemas there are technical tables (eg n-m relationships by example) that do not need to make generated code. It would be useful to have a...
FlexibleEntityInterface::fields() and FlexibleEntityInterface::extract() are somehow a bit redundant
I don't see much differences actually, maybe other than the fact that the extract() method will recursively parse fields and call extract() when the value is an entity. Shouldn't it...
What's the best way to process something in bulk when using iterator e.g. ```php $foos = $model->findAll(); foreach ($foos as $foo) { if (foo) { $existed++; } else { $model->deleteOne($foo);...
It took me a while to realize, but reading this: ``` php public function status($status = null) { if ($status !== null) { $this->status = (int) $status; return $this; }...