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

[Community Toolkit New article]: PostgreSQL Extensions #2540

Open
Alirexaa opened this issue Feb 4, 2025 · 0 comments
Open

[Community Toolkit New article]: PostgreSQL Extensions #2540

Alirexaa opened this issue Feb 4, 2025 · 0 comments
Assignees
Labels
community-toolkit Issues or PRs tracking .NET Aspire Community Toolkit. doc-idea Indicates issues that are suggestions for new topics [org][type][category] ⌚ Not Triaged Not triaged

Comments

@Alirexaa
Copy link
Contributor

Alirexaa commented Feb 4, 2025

Proposed topic or title

PostgreSQL Extensions + DbGate

Reason for the article

A new package in the community toolkit that provides extensions on the PostgreSQL hosting integration

It currently provides DbGate integration.

Example:

var builder = DistributedApplication.CreateBuilder(args);

var postgres1 = builder.AddPostgres("postgres1")
    .WithDbGate(c=> c.WithHostPort(8068));
postgres1.AddDatabase("db1");
postgres1.AddDatabase("db2");

var postgres2 = builder.AddPostgres("postgres2")
    .WithDbGate(c => c.WithHostPort(8068));
postgres2.AddDatabase("db3");
postgres2.AddDatabase("db4");

builder.Build().Run();

Article abstract

Overview of the extension package

Relevant searches

No response

@Alirexaa Alirexaa added community-toolkit Issues or PRs tracking .NET Aspire Community Toolkit. doc-idea Indicates issues that are suggestions for new topics [org][type][category] labels Feb 4, 2025
@dotnetrepoman dotnetrepoman bot added the ⌚ Not Triaged Not triaged label Feb 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
community-toolkit Issues or PRs tracking .NET Aspire Community Toolkit. doc-idea Indicates issues that are suggestions for new topics [org][type][category] ⌚ Not Triaged Not triaged
Projects
None yet
Development

No branches or pull requests

2 participants