mirror of https://github.com/AMT-Cheif/drift.git
Use relative links in part of the docs
This commit is contained in:
parent
bf50aac32a
commit
48331ab353
|
@ -10,7 +10,7 @@ aliases:
|
|||
Moor supports sql joins to write queries that operate on more than one table. To use that feature, start
|
||||
a select regular select statement with `select(table)` and then add a list of joins using `.join()`. For
|
||||
inner and left outer joins, a `ON` expression needs to be specified. Here's an example using the tables
|
||||
defined in the [example]({{< ref "/docs/Getting Started/_index.md" >}}).
|
||||
defined in the [example]({{< relref "../Getting Started/_index.md" >}}).
|
||||
|
||||
```dart
|
||||
// we define a data class to contain both a todo entry and the associated category
|
||||
|
|
|
@ -40,7 +40,7 @@ moor will figure out an appropriate type for them and include them in the genera
|
|||
`'categoryById': 'SELECT * FROM categories WHERE id = :id'` will generate the method `categoryById(int id)`.
|
||||
|
||||
You can also use `UPDATE` or `DELETE` statements here. Of course, this feature is also available for
|
||||
[daos]({{< ref "/docs/Advanced features/daos.md" >}}),
|
||||
[daos]({{< relref "../Advanced features/daos.md" >}}),
|
||||
and it perfectly integrates with auto-updating streams by analyzing what tables you're reading from or
|
||||
writing to.
|
||||
|
||||
|
|
Loading…
Reference in New Issue