Sencilla.Web.Batch
10.0.62
dotnet add package Sencilla.Web.Batch --version 10.0.62
NuGet\Install-Package Sencilla.Web.Batch -Version 10.0.62
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="Sencilla.Web.Batch" Version="10.0.62" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sencilla.Web.Batch" Version="10.0.62" />
<PackageReference Include="Sencilla.Web.Batch" />
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 Sencilla.Web.Batch --version 10.0.62
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Sencilla.Web.Batch, 10.0.62"
#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 Sencilla.Web.Batch@10.0.62
#: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=Sencilla.Web.Batch&version=10.0.62
#tool nuget:?package=Sencilla.Web.Batch&version=10.0.62
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Sencilla.Web.Batch
One endpoint — POST /api/v1/batch — that runs an ordered list of dependent
CRUD/GET steps composed on the frontend, so multi-step server workflows don't each
need a bespoke command/handler.
- Output-to-input wiring via
$ref:step.field(top-level write fields, v1). - Opt-in single-transaction execution (all-or-nothing).
- GET steps run first, outside the transaction; writes in declared order.
- Structured per-step results; idempotency for retried batches.
- Entities opt in with
[SencillaEntity("Name", Batch = BatchOpFlags.All)].
See PRD.md for the full design.
Wiring
var mvc = services.AddControllers();
services.AddSencillaWeb(mvc);
services.AddSencillaBatch(mvc);
Entity opt-in
[CrudApi("api/v1/orders")]
[SencillaEntity("Order", Batch = BatchOpFlags.All)]
public class Order : IEntity, IEntityCreateable, IEntityUpdateable, IEntityDeleteable { }
| 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Sencilla.Web (>= 10.0.62)
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 |
|---|---|---|
| 10.0.62 | 52 | 9/9/2026 |
| 10.0.61 | 49 | 9/9/2026 |
| 10.0.59 | 96 | 8/21/2026 |
| 10.0.58 | 94 | 8/21/2026 |
| 10.0.57 | 90 | 8/21/2026 |
| 10.0.56 | 94 | 8/21/2026 |
| 10.0.55 | 97 | 8/18/2026 |
| 10.0.54 | 94 | 8/14/2026 |
| 10.0.53 | 99 | 8/10/2026 |
| 10.0.52 | 93 | 8/7/2026 |
| 10.0.51 | 94 | 8/5/2026 |
| 10.0.50 | 98 | 8/5/2026 |
| 10.0.49 | 108 | 7/31/2026 |
| 10.0.48 | 115 | 7/23/2026 |
| 10.0.47 | 108 | 7/17/2026 |
| 10.0.46 | 109 | 7/13/2026 |
| 10.0.45 | 105 | 7/5/2026 |
| 10.0.44 | 106 | 6/23/2026 |
| 10.0.43 | 121 | 6/23/2026 |
| 10.0.42 | 117 | 6/22/2026 |
Loading failed