Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reference to sample project for MartenDB integration #5556

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 4 additions & 6 deletions website/src/docs/hotchocolate/v13/integrations/marten.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ work out of the box as expected, but filtering and sorting do not. LINQ expressi
be translated in a format that is digestible for the Marten LINQ provider before they are applied to the `IQueryable<T>` object.
This integration provides custom configurations to seamlessly integrate Marten with the `HotChocolate.Data` package.

# Get Started
You can find a sample project for the integration in [Hot Chocolate Examples](https://github.com/ChilliCream/hotchocolate-examples/tree/master/misc/MartenDB).

To use the MongoDB integration, you need to install the package `HotChocolate.Data.Marten`.
# Get Started

```bash
dotnet add package HotChocolate.Data.Marten
```
To use the Marten integration, you need to install the package `HotChocolate.Data.Marten`.

> ⚠️ Note: All `HotChocolate.*` packages need to have the same version.
<PackageInstallation packageName="HotChocolate.Data.Marten" />

# Filtering

Expand Down