StrongLoop: EmbedsMany vs hasMany and belongTo

348 Views Asked by At

My App has this Events Models. If I create another Model: Dates... so an Event can have multiple Dates, should I use Events EmbedsMany Dates? or is better to use Events hasMany Dates and Dates belongsTo Event? What's the difference?

New Dates to the event might be added later after the Event been created.

I might be using a MySQL database, don't know if that has something to do.

1

There are 1 best solutions below

2
On BEST ANSWER

Query on model which has EmbedsMany relation will include instance(s) of related detail model in the result. This is because child model will be persisted in a field of the master table, in a form of a document, if you are using SQL database.

HasMany stores id of related model and it is up to you are you going to include instance of related model or not in your query. In this case master and detail data will be stored in a separated tables.

What is better to use really depends on you and your needs.