NET8.SQL.Client.Connector 1.1.2

Additional Details

Use the latest version

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package NET8.SQL.Client.Connector --version 1.1.2
                    
NuGet\Install-Package NET8.SQL.Client.Connector -Version 1.1.2
                    
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="NET8.SQL.Client.Connector" Version="1.1.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NET8.SQL.Client.Connector" Version="1.1.2" />
                    
Directory.Packages.props
<PackageReference Include="NET8.SQL.Client.Connector" />
                    
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 NET8.SQL.Client.Connector --version 1.1.2
                    
#r "nuget: NET8.SQL.Client.Connector, 1.1.2"
                    
#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.
#:package NET8.SQL.Client.Connector@1.1.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NET8.SQL.Client.Connector&version=1.1.2
                    
Install as a Cake Addin
#tool nuget:?package=NET8.SQL.Client.Connector&version=1.1.2
                    
Install as a Cake Tool

NET8.SQL.Client.Connector

Conector de cliente SQL para .NET 8, diseñado para facilitar la integración y gestión de bases de datos SQL en tus aplicaciones .NET.

Características

  • Compatible con .NET 8.
  • Soporte para múltiples proveedores de bases de datos SQL.
  • Manejo eficiente de conexiones y comandos.
  • Fácil de usar e integrar en proyectos existentes.

Instalación

Puedes instalar este paquete desde NuGet ejecutando el siguiente comando en la consola del administrador de paquetes:

dotnet add package NET8.SQL.Client.Connector

O desde la consola de NuGet:

Install-Package NET8.SQL.Client.Connector

Uso básico

using NET8.SQL.Client.Connector.Implementation;
using NET8.SQL.Client.Connector;

public class BaseService {
    internal IConnection dbContext = new Connection();

    public TransactionResult Result { get => new() { Error = dbContext.Result.Error, Message = dbContext.Result.Message, ScopeIdentity = dbContext.Result.ScopeIdentity }; }
}

public interface IBaseService {
    TransactionResult Result { get; }
}

public interface IWelcomeService : IBaseService {
    Task<MovementLog[]> GetMovementLogs(string key);
    MovementLog[] GetMovementLogs(string key, CancelationToken cancelationToken);
}

public class WelcomeService : BaseService, IWelcomeService {
    public async Task<MovementLog[]> GetMovementLogs(string key, CancelationToken cancelationToken) => await dbContext.Read<MovementLog>("SPName", cancelationToken, key);

    public MovementLog[] GetMovementLogs(string key) => await dbContext.Read<MovementLog>("SPName", key);
}

Contribuciones

¡Las contribuciones son bienvenidas! Por favor, abre un issue o pull request para sugerencias o mejoras.

Licencia

Este proyecto está licenciado bajo la Licencia MIT.


Desarrollado por [Eduardo].

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.5 241 5/17/2025