What's the difference between embedsMany and hasMany in Strongloop loopback
Asked Answered
P

1

6

At first sight they seem to do the same thing: define a one-to-many relation So why would you choose one or another?

Prosy answered 11/6, 2015 at 14:9 Comment(0)
T
9

EmbedsMany - a model that embeds many instances of another model; for example, a Customer can have multiple email addresses and each email address is a complex object that contains label and address. A hasMany relation builds a one-to-many connection with another model.

EmbedsMany embeds all child objects in the same parent object, HasMany stores child objects separately and has a property as the foreign key to reference the declaring model.

Tegument answered 11/6, 2015 at 17:45 Comment(2)
I'm using MySQL, I'm guessing this only applies for document databases like MongoDB?Prosy
@Prosy - the backend DB doesn't really matter, mysql will happily store a stringified JSON array or object in a columnSerinaserine

© 2022 - 2024 — McMap. All rights reserved.