Ruby on Rails 6 Essential Training: Models and Associations

Ruby on Rails 6 Essential Training: Models and Associations

English | MP4 | AVC 1280×720 | AAC 48KHz 2ch | 2h 14m | 345 MB

Ruby on Rails can speed up and improve your development of full-featured web applications because it provides powerful tools that give structure and automate common data tasks. In this course, learn about the built-in features of models and associations in Rails. Apply named scopes, validations, callbacks, and associations to a sample project. Find out how to build smarter models by adding attributes not in the database and leveraging efficient queries. Walk through the use of available validation methods and helpers. Learn how to implement custom validations and to write and add automatic actions, known as callbacks. Explore effective use of Active Record associations, investigate belongs-to-many relationships and rich associations, and learn how to write queries that span several tables.

Table of Contents

Introduction
1 Let ActiveRecord objects manage your data
2 What you should know
3 Using the exercise files on GitHub

Smarter Models
4 Non-database attributes
5 Smart models by design
6 More ActiveRecord query methods
7 Query data selection
8 Named scopes
9 Challenge Named scopes
10 Solution Named scopes

Data Validations
11 Overview of validation methods
12 Write validations
13 Use the multipurpose validates method
14 Write custom validations
15 How to skip validations
16 Challenge Validations
17 Solution Validations

ActiveRecord Callbacks
18 Overview of callbacks
19 Use callbacks to automate actions
20 Execute callbacks conditionally
21 How to skip callbacks
22 Challenge Callbacks
23 Solution Callbacks

ActiveRecord Associations
24 Work with associations
25 Validate presence with belongs to
26 Destroy dependent-related records
27 Has and belongs to many relationships
28 Rich join associations
29 Traversing a rich join association
30 Joining tables during queries

Conclusion
31 Next steps