You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Learn how to use the .NET Aspire MongoDB extensions package which provides extra functionality to the .NET Aspire MongoDB hosting package.
4
+
ms.date: 03/04/2025
5
+
---
6
+
7
+
# .NET Aspire Community Toolkit MongoDB hosting extensions
In this article, you learn about the .NET Aspire Community Toolkit MongoDB hosting extensions package which provides extra functionality to the .NET Aspire [MongoDB hosting package](https://nuget.org/packages/Aspire.Hosting.MongoDB).
14
+
15
+
This package provides the following features:
16
+
17
+
-[DbGate](https://dbgate.org/) management UI
18
+
19
+
## Hosting integration
20
+
21
+
To get started with the .NET Aspire Community Toolkit MongoDB hosting extensions, install the [📦 CommunityToolkit.Aspire.Hosting.MongoDB.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.MongoDB.Extensions) NuGet package in the AppHost project.
For more information, see [dotnet add package](/dotnet/core/tools/dotnet-add-package) or [Manage package dependencies in .NET applications](/dotnet/core/tools/dependencies).
39
+
40
+
## Example usage
41
+
42
+
To add the DbGate management UI to your MongoDB resource, call the `WithDbGate` method on the `MongoDBResourceBuilder` instance.
43
+
44
+
```csharp
45
+
varMongoDB=builder.AddMongoDB("MongoDB")
46
+
.WithDbGate();
47
+
```
48
+
49
+
This will add a new resource to the app host which will be available from the .NET Aspire dashboard.
description: Learn how to use the .NET Aspire PostgreSQL extensions package which provides extra functionality to the .NET Aspire PostgreSQL hosting package.
4
+
ms.date: 03/04/2025
5
+
---
6
+
7
+
# .NET Aspire Community Toolkit PostgreSQL hosting extensions
In this article, you learn about the .NET Aspire Community Toolkit PostgreSQL hosting extensions package which provides extra functionality to the .NET Aspire [PostgreSQL hosting package](https://nuget.org/packages/Aspire.Hosting.PostgreSQL).
14
+
15
+
This package provides the following features:
16
+
17
+
-[DbGate](https://dbgate.org/) management UI
18
+
19
+
## Hosting integration
20
+
21
+
To get started with the .NET Aspire Community Toolkit PostgreSQL hosting extensions, install the [📦 CommunityToolkit.Aspire.Hosting.PostgreSQL.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.PostgreSQL.Extensions) NuGet package in the AppHost project.
For more information, see [dotnet add package](/dotnet/core/tools/dotnet-add-package) or [Manage package dependencies in .NET applications](/dotnet/core/tools/dependencies).
39
+
40
+
## Example usage
41
+
42
+
To add the DbGate management UI to your PostgreSQL resource, call the `WithDbGate` method on the `PostgresServerResource` instance.
In this article, you learn about the .NET Aspire Community Toolkit Redis hosting extensions package which provides extra functionality to the .NET Aspire [Redis hosting package](https://nuget.org/packages/Aspire.Hosting.Redis).
14
+
15
+
This package provides the following features:
16
+
17
+
-[DbGate](https://dbgate.org/) management UI
18
+
19
+
## Hosting integration
20
+
21
+
To get started with the .NET Aspire Community Toolkit Redis hosting extensions, install the [📦 CommunityToolkit.Aspire.Hosting.Redis.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.Redis.Extensions) NuGet package in the AppHost project.
For more information, see [dotnet add package](/dotnet/core/tools/dotnet-add-package) or [Manage package dependencies in .NET applications](/dotnet/core/tools/dependencies).
39
+
40
+
## Example usage
41
+
42
+
To add the DbGate management UI to your Redis resource, call the `WithDbGate` method on the `RedisResource` instance.
43
+
44
+
```csharp
45
+
varredis=builder.AddRedis("Redis")
46
+
.WithDbGate();
47
+
```
48
+
49
+
This will add a new resource to the app host which will be available from the .NET Aspire dashboard.
description: Learn how to use the .NET Aspire SQL Server extensions package which provides extra functionality to the .NET Aspire SQL Server hosting package.
4
+
ms.date: 03/04/2025
5
+
---
6
+
7
+
# .NET Aspire Community Toolkit SQL Server hosting extensions
In this article, you learn about the .NET Aspire Community Toolkit SQL Server hosting extensions package which provides extra functionality to the .NET Aspire [SQL Server hosting package](https://nuget.org/packages/Aspire.Hosting.SQLServer).
14
+
15
+
This package provides the following features:
16
+
17
+
-[DbGate](https://dbgate.org/) management UI
18
+
19
+
## Hosting integration
20
+
21
+
To get started with the .NET Aspire Community Toolkit SQL Server hosting extensions, install the [📦 CommunityToolkit.Aspire.Hosting.SqlServer.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.SqlServer.Extensions) NuGet package in the AppHost project.
For more information, see [dotnet add package](/dotnet/core/tools/dotnet-add-package) or [Manage package dependencies in .NET applications](/dotnet/core/tools/dependencies).
39
+
40
+
## Example usage
41
+
42
+
To add the DbGate management UI to your SQL Server resource, call the `WithDbGate` method on the `SqlServerResourceBuilder` instance.
43
+
44
+
```csharp
45
+
varsqlserver=builder.AddSqlServer("sqlserver")
46
+
.WithDbGate();
47
+
```
48
+
49
+
This will add a new resource to the app host which will be available from the .NET Aspire dashboard.
The SQLite hosting integration models a SQLite database as the `SQLiteResource` type and will create the database file in the specified location. To access these types and APIs that allow you to add the [📦 CommunityToolkit.Aspire.Hosting.SQLite](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.SQLite) NuGet package in the [app host](xref:dotnet/aspire/app-host) project.
For more information, see [dotnet add package](/dotnet/core/tools/dotnet-add-package) or [Manage package dependencies in .NET applications](/dotnet/core/tools/dependencies).
23
+
24
+
### Add SQLite resource
25
+
26
+
In the app host project, register and consume the SQLite integration using the `AddSQLite` extension method to add the SQLite database to the application builder.
When .NET Aspire adds a SQLite database to the app host, as shown in the preceding example, it creates a new SQLite database file in the users temp directory.
38
+
39
+
Alternatively, if you want to specify a custom location for the SQLite database file, provide the relevant arguments to the `AddSqlite` method.
When adding the SQLite resource, you can also add the SQLiteWeb resource, which provides a web interface to interact with the SQLite database. To do this, use the `WithSqliteWeb` extension method.
48
+
49
+
```csharp
50
+
varsqlite=builder.AddSQLite("my-database")
51
+
.WithSqliteWeb();
52
+
```
53
+
54
+
This code adds a container based on `ghcr.io/coleifer/sqlite-web` to the app host, which provides a web interface to interact with the SQLite database it is connected to. Each SQLiteWeb instance is connected to a single SQLite database, meaning that if you add multiple SQLiteWeb instances, there will be multiple SQLiteWeb containers.
55
+
56
+
### Adding SQLite extensions
57
+
58
+
SQLite supports extensions that can be added to the SQLite database. Extensions can either be provided via a NuGet package, or via a location on disk. Use either the `WithNuGetExtension` or `WithLocalExtension` extension methods to add extensions to the SQLite database.
59
+
60
+
> [!NOTE]
61
+
> The SQLite extensions support is considered experimental and produces a `CTASPIRE002` warning.
- The [SQLite Entity Framework](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Sqlite) integration provides support for hosting SQLite databases with Entity Framework.
66
+
-[📄 .NET Aspire SQLite EF hosting integration](sqlite-entity-framework-integration.md#client-integration)
> Always check the [GitHub repository][github-repo] for the most up-to-date information on the toolkit.
62
71
63
72
### Extensions
64
73
65
-
When you're working with [Node.js](https://nodejs.org/), there are lots of ways to achieve the same thing. To that end, the .NET Aspire Community Toolkit exposes some extensions that include support for alternative package managers ([yarn](https://yarnpkg.com/) and [pnpm](https://pnpm.io/)), and developer workflow improvements.
74
+
To expand the functionality provided by the .NET Aspire integrations, the Community Toolkit also provides extension packages for some hosting integrations. The following extensions are available in the toolkit:
If you're not seeing an integration or extension you need, you can contribute to the toolkit by creating your own integration and submitting a pull request. For more information, see [How to collaborate](#how-to-collaborate).
0 commit comments