Sasha Alex Romanenko
Sasha Alex Romanenko
- Avoid resource intensive hydration by joining as JSON object at database level with custom expression - customize what join runs at most appropriate time
- quickly implement one-to-many user/group membership - inspect queries generated in database query monitor - hydrator reuse entities from repository and identity map
Same as #4 but doctrine. Using manual DataMapper with table gateway as foundation as theoretical foundation for how Doctrine works.
Committing load of JS libraries for tutorial to work out of the box like skeleton does is very sad. Doing separate frontend project and compile into final JS app is...
Using galleon 4.2.5.Final When I use command `galleon install wildfly#18.0.1.Final --layers=jaxrs,cdi --dir=c:\devel2\galleon-demo2` or maven `wildfly-galleon-pack` plugin, its still trying to download jars from redhat EA, the way I found being...
Add support for Index creation with PostgreSQL platform. $table = CreateTable(); $table->addConstraint(new Index()) crashed with invalid syntax error. Same for AlterTable. Can be considered as first step towards cleaning up...
For original thought process on this list see #186 - [x] Explicit sequence with string or array identifier - [x] Multiple sequences per table (would love ideas for improvement) -...
`SqlServer\Ddl\CreatTableDecorator` does not know how to process `$id->setOption('IDENTITY', '1, 1');` , equivalent to AUTO_INCREMENT from MySQL or SEQUENCE from PostgreSQL
SQL Server `Ddl\AlterTable` `addColumn` produces ``` ALTER TABLE [users] ADD COLUMN [profile_image] INTEGER ``` Should be ``` ALTER TABLE [users] ADD [profile_image] INTEGER ```