Skip to content

Commit

Permalink
Merge branch 'rel-2.12' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
enisn committed Oct 19, 2022
2 parents ac4fb86 + 94592ae commit 6d5b4fc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 7 additions & 1 deletion docs/en/PremiumSupport.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,10 @@ Premium support is a speaicl 1:1 meeting that you can book with the author of Au
- Prepare your project or a sample project that you want to work on.
- Prepare your questions and/or issues that you want to discuss.
- Authorize [enisn](https://github.com/enisn) to access your project or sample project. *(If private)*
- If it'll be a live session, post required environment tools such as OS, IDE, Database etc. on your book request.
- If it'll be a live session, post required environment tools such as OS, IDE, Database etc. on your book request.

<center>
<button class="btn btn-outline-light book-now">Book a Session</button>
</center>

<link rel="stylesheet" type="text/css" href="https://widgets.superpeer.com/widget.css"><script src="https://widgets.superpeer.com/widget.js"></script><script>window.addEventListener("load", () => {new Superpeer.Widget({embed:{type:"popup"},launcher:{type:"custom",options:{selector:".book-now"}},config:{username:"enisn",serviceSlug:"autofilterer-support"}})})</script>
2 changes: 1 addition & 1 deletion docs/en/Support.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ AutoFilterer is an Open-Source project and you can always get support from the c
## Bugs & Features
Bugs and features can be reported via GitHub issues. Please check if there is already an issue for your bug or feature request before creating a new one. You can always create a new issue for your bug or feature request. They will be reviewed and prioritized by the author of AutoFilterer. If you want to contribute to AutoFilterer, you can also create a pull request after your issue/feature request is approved.

> _If you are looking for prioritized bug fix/feature request see [Premium Support](PremiumSupport.md_
> _If you are looking for **prioritized** bug fix/feature request see [Premium Support](PremiumSupport.md)_
6 changes: 1 addition & 5 deletions docs/en/generators/AutoFilterer-Generators.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ AutoFilterer.Generators aims to generate filter objects from entities automatica
- You'll see `BookFilter` objects exists in your project. It's ready to use. Can be directly used as query parameter:

```csharp
public Task<IActionResult> GetAsync([FromQuery] BookFilter filter)
{
return Ok(db.Books.ApplyFilter(filter));
// or place your fancy code instead of my ugly line :)
}
dbContext.Books.ApplyFilter(filter));
```

In the decleration, BookFilter source code looks like:
Expand Down

0 comments on commit 6d5b4fc

Please sign in to comment.