Sindika.AspNet.Connection 1.5.4

dotnet add package Sindika.AspNet.Connection --version 1.5.4
                    
NuGet\Install-Package Sindika.AspNet.Connection -Version 1.5.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Sindika.AspNet.Connection" Version="1.5.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sindika.AspNet.Connection" Version="1.5.4" />
                    
Directory.Packages.props
<PackageReference Include="Sindika.AspNet.Connection" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Sindika.AspNet.Connection --version 1.5.4
                    
#r "nuget: Sindika.AspNet.Connection, 1.5.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Sindika.AspNet.Connection&version=1.5.4
                    
Install Sindika.AspNet.Connection as a Cake Addin
#tool nuget:?package=Sindika.AspNet.Connection&version=1.5.4
                    
Install Sindika.AspNet.Connection as a Cake Tool

Sindika.AspNet.Connection

Sindika.AspNet.Connection is a .NET library designed to simplify and standardize connection management for various services such as Citus, Kafka, PostgreSQL, RabbitMQ, and Redis. It provides robust tools to configure, validate, and manage these connections efficiently.


Features

  • Citus Connection Management:

    • Simplified connection setup for Citus DB.
    • Health checks to ensure availability and performance.
    • Configurable settings for database tuning.
  • Kafka Integration:

    • Streamlined connection handling for Kafka brokers.
    • Support for producer and consumer setup.
  • PostgreSQL Support:

    • Easy-to-configure connection for PostgreSQL databases.
    • Built-in health checks and validation.
  • RabbitMQ Support:

    • Efficient connection management for RabbitMQ messaging.
    • Support for queues and message validation.
  • Redis Integration:

    • Configurable connection settings for Redis caching and data storage.
    • Supports connection pooling and health checks.

Usage

Citus Connection

  1. Configuration: Use CitusSettings.cs to define the necessary settings for connecting to the Citus database.

    var settings = new CitusSettings
    {
        Host = "localhost",
        Port = 5432,
        Database = "my_database",
        Username = "user",
        Password = "password"
    };
    
  2. Connection Manager: Use CitusConnectionManager to establish and manage the connection.

    var manager = new CitusConnectionManager(settings);
    var connection = manager.GetConnection();
    
  3. Health Check: Ensure the connection is healthy using CitusHealthChecker.

    var healthChecker = new CitusHealthChecker();
    bool isHealthy = healthChecker.CheckHealth(connection);
    

RabbitMQ

1. RabbitMQ Configuration in appsettings.json

To connect the application with RabbitMQ, add the following configuration in appsettings.json or appsettings.Development.json:

"RabbitmqSettings": {
    "HostName": "rabbitmq-host",
    "Port": 5672,
    "UserName": "rabbitmq-username",
    "Password": "rabbitmq-password"
}

Note:

  • Replace rabbitmq-host, rabbitmq-username, rabbitmq-password with the appropriate RabbitMQ address.
  • Do not store sensitive credentials in the code. Use environment variables or secret manager if needed.

2. Register RabbitMQ in Program.cs

Add the following code in Program.cs to configure RabbitMQ:

using Sindika.AspNet.Connection.Rabbitmq;

var builder = WebApplication.CreateBuilder(args);

var Configuration = builder.Configuration;
Configuration.AddEnvironmentVariables();

// Register RabbitMQ Extensions
builder.Services.AddRabbitMQ(Configuration);

3. Using RabbitMQ Service

Example how to use RabbitmqService

public class OrderService
{
    private readonly RabbitmqService _rabbitmqService;
    
    public OrderService(RabbitmqService rabbitmqService)
    {
        _rabbitmqService = rabbitmqService;
    }
    
    public async Task SendMessageAsync()
    {
        var exchangeConfig = new RabbitmqExchangeConfig
        {
            Name = "order-exchange",
            Type = ExchangeType.Direct,
            Durable = true
        };

        var routingKey = "order.created";
        var message = "New order placed";
        
        await _rabbitmqService.PublishMessageAsync(exchangeConfig, routingKey, message);
    }
}

Future Plans

  • Add implementation for Kafka connection management.
  • Extend PostgreSQL, RabbitMQ, and Redis connection support.
  • Provide detailed examples for each service.
  • Include performance optimization tools.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Sindika.AspNet.Connection:

Package Downloads
Sindika.AspNet.Authentication

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.4 281 3/11/2025
1.5.3 164 3/10/2025
1.5.2 262 3/7/2025
1.5.1 194 3/7/2025
1.5.0 186 3/7/2025
1.4.0 109 2/26/2025
1.3.0 91 2/26/2025
1.2.1 348 2/5/2025
1.2.0 98 2/4/2025
1.1.0 98 2/4/2025
1.0.0 740 1/17/2025