DEV Community

Discussion on: Introducing MikroORM, TypeScript data-mapper ORM with Identity Map

Collapse
 
b4nan profile image
Martin Adámek

I don't think they are that similar under the hood. TypeORM does not implement neither unit of work nor identity map, so the underlying logic is really different I believe.

My main reason to start new project was not to be bound by such a huge community - I don't see how we could maintain back compatibility while introducing UoW and IM to TypeORM. It would have to be another (optional) way to use it, which would make it even more complex (which it already is).

Collapse
 
clovis1122 profile image
José Clovis Ramírez de la Rosa

Sounds fair!