NET8.SQL.Client.Connector
1.1.5
dotnet add package NET8.SQL.Client.Connector --version 1.1.5
NuGet\Install-Package NET8.SQL.Client.Connector -Version 1.1.5
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.5" />
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.5" />
<PackageReference Include="NET8.SQL.Client.Connector" />
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.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: NET8.SQL.Client.Connector, 1.1.5"
#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.5
#: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.5
#tool nuget:?package=NET8.SQL.Client.Connector&version=1.1.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.
-
net8.0
- Microsoft.Data.SqlClient (>= 6.0.2)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Json (>= 8.0.0)
- MySql.Data (>= 9.3.0)
- Newtonsoft.Json (>= 13.0.3)
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 |