EngramaCoreStandar 1.1.2

dotnet add package EngramaCoreStandar --version 1.1.2
                    
NuGet\Install-Package EngramaCoreStandar -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="EngramaCoreStandar" Version="1.1.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EngramaCoreStandar" Version="1.1.2" />
                    
Directory.Packages.props
<PackageReference Include="EngramaCoreStandar" />
                    
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 EngramaCoreStandar --version 1.1.2
                    
#r "nuget: EngramaCoreStandar, 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 EngramaCoreStandar@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=EngramaCoreStandar&version=1.1.2
                    
Install as a Cake Addin
#tool nuget:?package=EngramaCoreStandar&version=1.1.2
                    
Install as a Cake Tool

Engrama Core (EngramaCoreStandar)

NuGet library for Engrama apps: Dapper + SQL Server stored procedures (API) and HttpClient helpers (Blazor PWA).

Install / reference

From source (this template): project-reference EngramaCoreStandar (version 1.1.2).

From NuGet: EngramaCoreStandar — publish 1.1.2 after packing this project.

DI

// API
builder.Services.AddEngramaDependenciesAPI();

// Blazor WASM
builder.Services.AddEngramaDependenciesBlazor();
// also register HttpClient with BaseAddress

Connection string key (required for Dapper helpers):

"ConnectionStrings": {
  "EngramaCloudConnection": "Server=...;Database=...;..."
}

Dapper helpers — which method to use

Helper SP receives TVP list? Returns
GetAsync<TResult, TRequest> No 1 row
GetAllAsync<TResult, TRequest> No N rows
GetWithListAsync<TResult, TRequest> Yes (IEnumerable<DT*>) 1 row
GetAllWithListAsync<TResult, TRequest> Yes N rows

TVP rules

  1. SQL: CREATE TYPE dbo.DTMyType AS TABLE (...) and SP param @Items DTMyType READONLY.
  2. C#: class named exactly DTMyType with matching columns.
  3. Request property: IEnumerable<DTMyType> Items (name = SQL param without @).
  4. Empty lists are supported (schema is built from the element type).

Full Engrama walkthrough: MetodologiaEngrama/8- Guia Consultas SP.md in TemplatePWA.

Servicios (Blazor)

  • IHttpServiceGet, Post, Put, Delete, multipart helpers
  • IValidaServicioService — maps Response<T> HTTP wrappers to SeverityMessage for UI

1.1.2 improvements

  • Fixed BuildSqlCommand (compile error)
  • GetAllWithListAsync qualifies SP with schema ([dbo].[sp…])
  • Empty TVP DataTables keep column schema
  • Safer reader column mapping
  • Fixed inverted null check in ValidateSPResult
  • Script GetAsync uses QueryFirstOrDefaultAsync (not scalar)
  • Added Put / Delete on IHttpService
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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.2 103 8/3/2026
1.1.1 187 6/23/2026
1.1.0 176 6/15/2026
1.0.9 186 6/27/2025
1.0.8 215 6/27/2025
1.0.7 217 6/27/2025
1.0.6 254 6/18/2025
1.0.5 254 6/14/2025
1.0.4 366 6/10/2025
1.0.3 235 6/2/2025
1.0.2 247 3/17/2025
1.0.1 239 3/17/2025
1.0.0 250 3/12/2025