/
Mongoose (ODM) & Sequelize (ORM)
Mongoose (ODM) & Sequelize (ORM)
Why it is being used in EshopBox ?
Pre-defined database model schema
Add data validation to all the fields defined in models
Audience
All software development engineers
Reading Material
Link | Level |
---|---|
Beginner | |
Intermediate/Expert | |
Beginner | |
Intermediate/Expert |
Dos & Don’ts
Dos
Always define data types in models correctly as required like int, string, enum etc
Always add updated_at, created_at, and deleted_at keys in model schema
For sequelize ORM, use particular driver of RDBMS which you are going to use
It is good to write migrations and seed data for your application
You can bulk insert any data in tables
Don’ts
If you want to add another column in your schema, just write and run migrations.
Complex queries must be written effectively like joins, aggregations etc.
, multiple selections available,
Related content
Hibernate(ORM)
Hibernate(ORM)
More like this
Services and DAO(Data Access Object)
Services and DAO(Data Access Object)
Read with this
REST API GUIDELINES
REST API GUIDELINES
Read with this
Flipkart Payout upload in BQ & eshopbox ID mapping
Flipkart Payout upload in BQ & eshopbox ID mapping
More like this
Programming Backend
Programming Backend
More like this
Memcache
Memcache
Read with this