AT.Core.Storage.Repositories
1.3.0
See the version list below for details.
dotnet add package AT.Core.Storage.Repositories --version 1.3.0
NuGet\Install-Package AT.Core.Storage.Repositories -Version 1.3.0
<PackageReference Include="AT.Core.Storage.Repositories" Version="1.3.0" />
<PackageVersion Include="AT.Core.Storage.Repositories" Version="1.3.0" />
<PackageReference Include="AT.Core.Storage.Repositories" />
paket add AT.Core.Storage.Repositories --version 1.3.0
#r "nuget: AT.Core.Storage.Repositories, 1.3.0"
#:package AT.Core.Storage.Repositories@1.3.0
#addin nuget:?package=AT.Core.Storage.Repositories&version=1.3.0
#tool nuget:?package=AT.Core.Storage.Repositories&version=1.3.0
AT.Core.Storage.Repositories
Este nuget expone una implementación del patrón repository
Getting Started
- Proceso de instalación
- Software dependencies
- Cómo usarlo?
- API references
⚙️ Proceso de instalación:
Instale el nuget usando el siguiente comando.
.NET Cli
dotnet add package AT.Core.Storage.Repositories --version 1.1.0
Nuget
NuGet\Install-Package AT.Core.Storage.Repositories -Version 1.1.0
Package reference
<PackageReference Include="AT.Core.Storage.Repositories" Version="1.1.0" />
🛠️Dependencias
net9.0
- Microsoft.EntityFrameworkCore (>="9.0.3)
✈️ Cómo usarlo?
Se recomienda instalar este nuget en un proyecto Domain
Program.cs
Registrar los servicios que se exponen en el metodo AddATApiCommon
public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
string connectionString = Configuration.GetConnectionString("DemoDbConnection");
builder.Services.AddDbContext<DemoDbContext>(option => option.UseSqlServer(connectionString));
services.AddGenericRepository<DemoDbContext>(); // Call it just after registering your DbConext.
services.AddQueryRepository<DemoDbContext>();
⁝
🎓 Créditos
Nombre del Paquete: AT.Core.Storage.Repositories Versión: 1.1.0
Autor
- Nombre: Dayser José Granados Pineda
- Correo Electrónico: djpgranados@gmail.com | daysergranados@hotmail.com
Licencia
Este paquete está bajo la licencia MIT License
Copyright (c) 2025 Dayser José Granados Pineda
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE..
Contacto
Si tienes comentarios, problemas o solicitudes, ¡no dudes en ponerte en contacto conmigo!
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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. |
-
net10.0
- Microsoft.EntityFrameworkCore (>= 10.0.9)
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.9)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.