docs: correct "it's" -> "its"

"It's" is a contraction for "it is". "its" is the possessive form of
"it".
This commit is contained in:
Michael Dippery 2025-02-18 23:08:43 -08:00 committed by GitHub
parent 87b9fad737
commit 9d862c8a53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ export class UserController {
Transactions have their own scope of execution: they have their own query runner, entity manager and repository instances.
That's why using global (data source's) entity manager and repositories won't work in transactions.
In order to execute queries properly in scope of transaction you **must** use provided entity manager
and it's `getRepository` method. In order to use custom repositories within transaction,
and its `getRepository` method. In order to use custom repositories within transaction,
you must use `withRepository` method of the provided entity manager instance:
```typescript

View File

@ -16,7 +16,7 @@ You can create a view entity by defining a new class and mark it with `@ViewEnti
- `database` - database name in selected DB server.
- `schema` - schema name.
- `expression` - view definition. **Required parameter**.
- `dependsOn` - List of other views on which the current views depends. If your view uses another view in it's definition, you can add it here so that migrations are generated in the correct order.
- `dependsOn` - List of other views on which the current views depends. If your view uses another view in its definition, you can add it here so that migrations are generated in the correct order.
`expression` can be string with properly escaped columns and tables, depend on database used (postgres in example):