Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
dakorpar committed Jun 2, 2019
2 parents 8c0d50b + 18861aa commit 0a03b5d
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dibi Entity generator
Typed entity generator from database. It can generate entities for whole database, table/view and from query.
Highly configurable typed entity generator from database. It can generate entities for whole database, table/view and from query.

This is dibi/nette bridge for https://github.com/dodo-it/entity-generator/

Expand Down Expand Up @@ -30,8 +30,45 @@ entityGenerator:
extends: App\Model\Entities\BaseEntity
generateGetters: false
generateSetters: false
extends: DodoIt\EntityGenerator\Entity
propertyVisibility: 'public'
```
You can see list of all options and their default values in:
https://github.com/dodo-it/entity-generator/blob/master/src/Generator/Config.php
## Usage
### Abstract entity class
First create your BaseEntity class which all entities will extends and set option extends to that class in your configuration.
As a starting point you can just Use Dibi\Row and set to only generate phpdoc comments that way nothing will change but you will have full autocomplete in your queries.
Better scenario would be to generate getters and setters which then can have return typehints...
### Example code in repository
```php
public function getById(int $id): ArticleEntity
{
return $this->db->select('*')->from('articles')->where('id = %i', $id)
->execute()
->setRowClass(ArticleEntity::class)
->fetch();
}
```

### Generate all
To generate all entities run from database tables and views run
```ssh
console entity:generate
```
### Generate one table/view only

```ssh
console entity:generate table_name
```

### Generate from query
Write your query in .sql file and put it into app/Models/Queries/
after that run command:

```ssh
console entity:generate --query-file=app/Models/Queries/Query.sql EntityName
```

0 comments on commit 0a03b5d

Please sign in to comment.