Nicolas M.
Nicolas M.
See the right behaviour of `Reflect.get()` below, compared to `Reflect.getMetadata()` when a proxy is involved. ```ts import "reflect-metadata"; const METADATA_KEY = Symbol(); const post = { id: 1000 } Reflect.defineMetadata(METADATA_KEY,...
This is not an issue. Just to make a link between this library and the discussion about Common Local Storage and Transactions in TypeOrm repo available here: typeorm/typeorm#1895 Very good...
Would you mind providing an example using Request scope? Documentation is not very clear: > The inRequestScope creates a singleton that will last for the entire life cycle of one...
This adds the ability for Mikro-orm to manage multitenant architectures. Mikro-orm is now able to generate migration files to migrate dynamic db schemas. Example of a multitenant architecture: ```js "public"...
### Describe the bug Let's say my model is made of one base class `Transport` and two other classes `AirTransport` and `RoadTransport` inheriting from that base class: ```ts abstract class...
This feature allows to use index expressions on wilcard-schema entities. Now `expression` accepts either a SQL expression as a raw `string` (aka same behavior as til now); or a callback...