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]: SqlServer Extensions #2665

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

[Community Toolkit New article]: SqlServer Extensions #2665

Alirexaa opened this issue Feb 24, 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

Proposed topic or title

SqlServer Extensions + DbGate

Reason for the article

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

It currently provides DbGate integration.

Example:

var builder = DistributedApplication.CreateBuilder(args);

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

var sqlserver2 = builder.AddSqlServer("sqlserver2")
    .WithDbGate(c => c.WithHostPort(8068));
sqlserver2.AddDatabase("db3");
sqlserver2.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 24, 2025
@dotnetrepoman dotnetrepoman bot added the ⌚ Not Triaged Not triaged label Feb 24, 2025
@Alirexaa Alirexaa changed the title [Community Toolkit New article]: SqlServer Extensions + DbGate [Community Toolkit New article]: SqlServer Extensions Feb 24, 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