Skip to content

Commit 205b7d4

Browse files
committed
update docs
1 parent 05ece2c commit 205b7d4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

MyApp/_pages/autoquery/crud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ and to Query the Rockstar table you have the [full featureset of AutoQuery](/aut
134134

135135
## Custom AutoQuery CRUD Implementation
136136

137-
Just as you can create [Custom AutoQuery Implementations](/autoquery/rdbms.html#custom-autoquery-implementations) to override the default AutoQuery behavior
137+
Just as you can create [Custom AutoQuery Implementations](/autoquery/rdbms#custom-autoquery-implementations) to override the default AutoQuery behavior
138138
you can also override AutoQuery CRUD implementations by creating implementations with AutoQuery CRUD Request DTOs and calling the relevate `IAutoQueryDb` method, e.g:
139139

140140
```csharp

MyApp/_pages/autoquery/rdbms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,7 @@ AutoQuery combines all other aggregate functions like `Total` and executes them
10551055
### Hybrid AutoQuery Services
10561056

10571057
AutoQuery Services can be easily enhanced by creating a custom Service implementation that modifies the `SqlExpression` Query that AutoQuery auto populates from the incoming request. In addition to using OrmLite's typed API to perform standard DB queries you can also take advantage of advanced RDBMS features with custom SQL fragments. As an example we'll look at the implementation of [techstacks.io](https://github.com/NetCoreApps/TechStacks) fundamental
1058-
[QueryPosts Service](https://github.com/NetCoreApps/TechStacks/blob/master/src/TechStacks.ServiceInterface/PostPublicServices.cs)
1058+
[QueryPosts Service](https://github.com/NetCoreApps/TechStacks/blob/master/TechStacks.ServiceInterface/PostPublicServices.cs)
10591059
which powers every Post feed in TechStacks where its custom implementation inherits all queryable functionality of its `QueryDb<Post>` AutoQuery Service and adds high-level functionality for `AnyTechnologyIds` and `Is` custom high-level properties that's used to query multiple columns behind-the-scenes.
10601060

10611061
In addition to inheriting all default Querying functionality in a `QueryDb<Post>` AutoQuery Service, the custom implementation also:
@@ -1090,7 +1090,7 @@ public class PostPublicServices(IAutoQueryDb autoQuery) : Service
10901090
10911091
q.Where(x => x.Deleted == null);
10921092

1093-
var states = request.Is ?? TypeConstants.EmptyStringArray;
1093+
var states = request.Is ?? [];
10941094
if (states.Contains("closed") || states.Contains("completed") || states.Contains("declined"))
10951095
q.And(x => x.Status == "closed");
10961096
else

MyApp/_pages/kamal-deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The template includes a GitHub Actions workflow that is broken up into 3 steps t
5151
Once you create your GitHub repository, add the `SSH_PRIVATE_KEY` secret to your repository settings with the contents of your private key file.
5252

5353
```bash
54-
gh secret set PRIVATE_SSH_KEY < ~/deploy-key
54+
gh secret set SSH_PRIVATE_KEY < ~/deploy-key
5555
```
5656

5757
### Structure

0 commit comments

Comments
 (0)