HAL.AspNetCore
7.0.4
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package HAL.AspNetCore --version 7.0.4
NuGet\Install-Package HAL.AspNetCore -Version 7.0.4
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="HAL.AspNetCore" Version="7.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="HAL.AspNetCore" Version="7.0.4" />
<PackageReference Include="HAL.AspNetCore" />
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 HAL.AspNetCore --version 7.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: HAL.AspNetCore, 7.0.4"
#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 HAL.AspNetCore@7.0.4
#: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=HAL.AspNetCore&version=7.0.4
#tool nuget:?package=HAL.AspNetCore&version=7.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
HAL
This project aims to bring a simple to use implementation of the Hypertext Application language.
Specification
- The formal specification is published as in IETF draft and can be found under https://tools.ietf.org/html/draft-kelly-json-hal-08.
- A more informal documentation can be found under http://stateless.co/hal_specification.html.
Usage
The project consists of three packages
HAL.Commonwhich contains theIResource,IResource<T>andILinkimplementations and the converters needed for serialization withSystem.Text.Json.HAL.AspNetCoreaddsIResourceFactoryandILinkFactorywhich can be used in your controllers to easily generate resources from your models.HAL.AspNetCore.ODataaddsIODataResourceFactorywhich can be used in your controllers to easily generate list endoints with paging from OData $skip and $top syntax.
Without OData support
In Startup.cs
public void ConfigureServices(IServiceCollection services)
{
services
.AddControllers() // or .AddMvc()
.AddHal()
.AddJsonOptions(o => // not neccessary, but creates a much nicer output
{
o.JsonSerializerOptions.DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingDefault;
});
}
In your controller
[Route("[controller]")]
public class MyController : HalControllerBase
{
private readonly IResourceFactory _resourceFactory;
public Table(IResourceFactory resourceFactory)
{
_resourceFactory = resourceFactory ?? throw new ArgumentNullException(nameof(resourceFactory));
}
[HttpGet]
[ApiConventionMethod(typeof(DefaultApiConventions), nameof(DefaultApiConventions.Get))]
public ActionResult<IResource> GetList()
{
var models = new[]
{
new MyModelListDto {Id = 1, Name = "Test1"},
new MyModelListDto {Id = 2, Name = "Test2"},
};
var result = _resourceFactory.CreateForListEndpoint(models, _ => "items", m => m.Id);
return Ok(result);
}
[HttpGet("{id}")]
public ActionResult<IResource<ModelFullDto>> Get(int id)
{
var model = new ModelFullDto { Id = id, Name = $"Test{id}", Description = "Very important!" };
var result = _resourceFactory.CreateForGetEndpoint(model);
return Ok(result);
}
// PUT, POST, ...
}
With OData support
In Startup.cs
public void ConfigureServices(IServiceCollection services)
{
services.AddOData();
var modelBuilder = new ODataConventionModelBuilder();
modelBuilder.EntitySet<MyModelListDto>(typeof(MyModelListDto).Name);
services.AddSingleton(_ => modelBuilder.GetEdmModel());
services
.AddControllers() // or .AddMvc()
.AddHALOData()
.AddJsonOptions(o => // not neccessary, but creates a much nicer output
{
o.JsonSerializerOptions.DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingDefault;
});
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
// ...
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
endpoints.EnableDependencyInjection(); // Required for OData to work.
});
// ...
}
In your controller
[Route("[controller]")]
public class MyController : HalControllerBase
{
private readonly IODataResourceFactory _resourceFactory;
public Table(IODataResourceFactory resourceFactory)
{
_resourceFactory = resourceFactory ?? throw new ArgumentNullException(nameof(resourceFactory));
}
[HttpGet]
[ApiConventionMethod(typeof(DefaultApiConventions), nameof(DefaultApiConventions.Get))]
public ActionResult<Resource> GetList(
// The SwaggerIgnore attribute and all parameters beside the options are just here to give you a nice swagger experience.
// If you do not need that, you can remove everything except the options parameter.
[SwaggerIgnore] ODataQueryOptions<TEntity> options,
[FromQuery(Name = "$filter")] string? filter = default,
[FromQuery(Name = "$orderby")] string? orderby = default,
[FromQuery(Name = "$top")] long? top = default,
[FromQuery(Name = "$skip")] long? skip = default)
{
var models = new[]
{
new MyModelListDto {Id = 1, Name = "Test1"},
new MyModelListDto {Id = 2, Name = "Test2"},
};
// Apply the OData filtering
models = options.Apply(models.AsQueryable()).Cast<MyModelListDto>().ToArray()
var result = _resourceFactory.CreateForOdataListEndpointUsingSkipTopPaging(models, _ => "items", m => m.Id, options);
return Ok(result);
}
// GET, PUT, POST, ...
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- HAL.Common (>= 2.0.0)
- Microsoft.AspNetCore.Mvc.Versioning (>= 5.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on HAL.AspNetCore:
| Package | Downloads |
|---|---|
|
HAL.AspNetCore.OData
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 20.0.4 | 0 | 3/10/2026 |
| 20.0.3 | 122 | 2/10/2026 |
| 20.0.2 | 121 | 2/9/2026 |
| 20.0.1 | 326 | 12/15/2025 |
| 20.0.0 | 503 | 11/11/2025 |
| 19.0.2 | 283 | 11/9/2025 |
| 19.0.1 | 279 | 11/9/2025 |
| 19.0.0 | 270 | 11/9/2025 |
| 18.2.1 | 454 | 9/16/2025 |
| 18.2.0 | 393 | 6/19/2025 |
| 18.1.1 | 375 | 4/15/2025 |
| 18.1.0 | 379 | 3/17/2025 |
| 18.0.1 | 436 | 1/26/2025 |
| 18.0.0 | 476 | 11/20/2024 |
| 17.2.2 | 2,701 | 11/6/2024 |
| 17.2.1 | 699 | 10/11/2024 |
| 17.2.0 | 423 | 9/27/2024 |
| 17.1.1 | 625 | 7/18/2024 |
| 17.1.0 | 497 | 7/3/2024 |
| 7.0.4 | 3,598 | 3/7/2022 |
Loading failed