undeexcepturi
Version:
TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.
54 lines (38 loc) • 990 B
text/typescript
import { Embeddable, Embedded, Entity, PrimaryKey, Property } from '@mikro-orm/core';
import { MikroORM } from '@mikro-orm/sqlite';
()
class A {
()
foo!: string;
()
bar!: number;
}
()
class B {
()
id!: number;
({ entity: () => A, object: false, nullable: true })
a!: A | null;
}
let orm: MikroORM;
beforeAll(async () => {
orm = await MikroORM.init({
entities: [A, B],
dbName: ':memory:',
});
await orm.schema.createSchema();
orm.em.create(B, { a: null });
await orm.em.flush();
orm.em.clear();
});
afterAll(() => orm.close(true));
test('embedded should be null', async () => {
const [b] = await orm.em.find(B, {});
expect(b.a).toBeNull(); // undefined
});
test('get embedded by null', async () => {
const a = await orm.em.findOne(B, { a: { foo: null } });
expect(a).not.toBeNull();
const f = await orm.em.findOne(B, { a: null }); // throws
expect(f).not.toBeNull();
});