I have two entities:
@Entity({ name: \'provider\' })
export class ProviderEntity extends GenericEntity {
@Column()
name: string;
@Column()
descr
I believe to associate things by a relation ID, and not a full relation object, you need to add the relation ID to your interface:
@ManyToOne(() => ProviderEntity, provider => provider.items)
provider: Promise<ProviderEntity>;
@Column()
providerId: string
providerId
is the column TypeORM uses to keep track of the relation internally, you simply simply need to expose it publicly.
And then you simply set that property:
const item = new ItemEntity();
item.content = content;
item.providerId = providerId; // set providerId column directly.
await this.repository.save(item);
Thanks to @alex-wayne who pointed out this question to me. For Reference, the approach which he proposed most likely originated from this github issue. More precisely this answer from pleerock, the core contributor.
Moreover, I personally prefer the first approach. In practice, with the addition to using the create
method:
const content = 'mockContent';
const providerId = '5be045b1-ef49-4818-b69f-a45c0b7e53';
const provider = new Provider();
provider.id = providerId;
const item = this.itemRepository.craete({ content, provider })
await this.repository.save(item);