Skip to content

Commit ac38471

Browse files
No resources for Lazy loading
1 parent 7b1016e commit ac38471

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -472,8 +472,7 @@ ACID is an acronym that refers to Atomicity, Consistency, Isolation and Durabili
472472
How would you manage database schema migrations? That is, how would you automate changes to database schema, as the application evolves, version after version?
473473

474474
#### Lazy Loading
475-
How is lazy loading achieved? When is it useful? What are its pitfalls?<br/>
476-
[Resources](databases/lazy-loading.md)
475+
How is lazy loading achieved? When is it useful? What are its pitfalls?
477476

478477
#### N+1 Problem
479478
The so called "N + 1 problem" is an issue that occurs when code needs to load the children of a parent-child relationship with a ORMs that have lazy-loading enabled, and that therefore issue a query for the parent record, and then one query for each child record. How to fix it?<br/>

databases/lazy-loading.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)