ModelManager icon indicating copy to clipboard operation
ModelManager copied to clipboard

Model Manager for the Pomm database framework.

Results 20 ModelManager issues
Sort by recently updated
recently updated
newest added

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...

bug

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...

enhancement

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...

bug
help wanted
Request For Comments

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

Request For Comments

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...

bug
documentation

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...

enhancement

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...

Request For Comments

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);...

enhancement

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; }...

enhancement
Request For Comments