-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
mkdocs.yml
49 lines (42 loc) · 1.37 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
site_name: MediatR CommandQuery
theme: material
repo_url: https://github.com/loresoft/MediatR.CommandQuery
nav:
- Home: index.md
- Quick Start: quickStart.md
- Queries:
- Identifier Query: queries/identifier.md
- Identifiers Query: queries/identifiers.md
- Paged Query: queries/paged.md
- List Query: queries/list.md
- Filters: queries/filters.md
- Result Caching: queries/caching.md
- Base Queries: queries/abstracts.md
- Commands:
- Create Command: commands/create.md
- Delete Command: commands/delete.md
- Patch Command: commands/patch.md
- Update Command: commands/update.md
- Upsert Command: commands/upsert.md
- Base Commands: commands/abstracts.md
- Handlers:
- Entity Framework Core: handlers/entityFramework.md
- Cosmos DB: handlers/cosmos.md
- Mongo DB: handlers/mongo.md
- Behaviors:
- Soft Delete: behaviors/delete.md
- Result Caching: behaviors/caching.md
- Tenant: behaviors/tenant.md
- Audit: behaviors/audit.md
- Validation: behaviors/validation.md
- Base Behaviors: behaviors/abstracts.md
- Script Templates: scripts.md
markdown_extensions:
- tables
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences