diff --git a/docs/many-to-one-one-to-many-relations.md b/docs/many-to-one-one-to-many-relations.md index 0a4e53d73e..16c24e2383 100644 --- a/docs/many-to-one-one-to-many-relations.md +++ b/docs/many-to-one-one-to-many-relations.md @@ -102,7 +102,7 @@ photo2.user = user; await connection.manager.save(photo2); ``` -With cascades enabled you can save this relation with only one `save` call. +With [cascades](https://github.com/typeorm/typeorm/blob/master/docs/relations.md#cascades) enabled you can save this relation with only one `save` call. To load a user with photos inside you must specify the relation in `FindOptions`: diff --git a/docs/one-to-one-relations.md b/docs/one-to-one-relations.md index acb87e0bf6..ee5c86774f 100644 --- a/docs/one-to-one-relations.md +++ b/docs/one-to-one-relations.md @@ -82,7 +82,7 @@ user.profile = profile; await connection.manager.save(user); ``` -With cascades enabled you can save this relation with only one `save` call. +With [cascades](https://github.com/typeorm/typeorm/blob/master/docs/relations.md#cascades) enabled you can save this relation with only one `save` call. To load user with profile inside you must specify relation in `FindOptions`: