HAL.Client.Net
1.2.1
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.Client.Net --version 1.2.1
NuGet\Install-Package HAL.Client.Net -Version 1.2.1
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.Client.Net" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="HAL.Client.Net" Version="1.2.1" />
<PackageReference Include="HAL.Client.Net" />
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.Client.Net --version 1.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: HAL.Client.Net, 1.2.1"
#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.Client.Net@1.2.1
#: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.Client.Net&version=1.2.1
#tool nuget:?package=HAL.Client.Net&version=1.2.1
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.2.1)
- Microsoft.AspNetCore.Mvc.Core (>= 2.2.5)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Net.Http.Headers (>= 2.2.8)
- Tavis.UriTemplates (>= 1.1.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on HAL.Client.Net:
| Package | Downloads |
|---|---|
|
RESTworld.Client.Net
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 11.0.1 | 265 | 12/15/2025 |
| 11.0.0 | 381 | 11/11/2025 |
| 10.3.1 | 230 | 11/9/2025 |
| 10.3.0 | 217 | 11/9/2025 |
| 10.2.1 | 338 | 9/16/2025 |
| 10.2.0 | 325 | 6/19/2025 |
| 10.1.1 | 293 | 4/15/2025 |
| 10.1.0 | 312 | 3/17/2025 |
| 10.0.1 | 364 | 1/26/2025 |
| 10.0.0 | 370 | 11/20/2024 |
| 9.1.1 | 650 | 10/11/2024 |
| 9.1.0 | 270 | 9/27/2024 |
| 9.0.0 | 664 | 7/2/2024 |
| 8.0.0 | 293 | 6/4/2024 |
| 7.2.0 | 762 | 1/9/2024 |
| 7.1.0 | 278 | 12/22/2023 |
| 7.0.0 | 474 | 11/14/2023 |
| 6.1.0 | 395 | 10/23/2023 |
| 6.0.0 | 201 | 10/23/2023 |
| 5.0.0 | 393 | 9/26/2023 |
| 4.3.0 | 545 | 7/11/2023 |
| 4.2.0 | 308 | 7/11/2023 |
| 4.1.0 | 343 | 7/3/2023 |
| 4.0.2 | 566 | 6/14/2023 |
| 4.0.1 | 307 | 5/25/2023 |
| 4.0.0 | 601 | 5/16/2023 |
| 3.2.0 | 410 | 4/30/2023 |
| 3.1.2 | 496 | 3/11/2023 |
| 3.1.1 | 745 | 2/22/2023 |
| 3.1.0 | 462 | 2/9/2023 |
| 3.0.0 | 785 | 12/12/2022 |
| 2.0.0 | 643 | 11/9/2022 |
| 1.3.1 | 817 | 10/20/2022 |
| 1.3.0 | 715 | 9/27/2022 |
| 1.2.2 | 937 | 6/9/2022 |
| 1.2.1 | 734 | 6/9/2022 |
| 1.2.0 | 754 | 6/8/2022 |
| 1.1.5 | 606 | 6/8/2022 |
| 1.1.4 | 739 | 6/7/2022 |
| 1.1.3 | 594 | 6/7/2022 |
| 1.1.2 | 604 | 6/7/2022 |
| 1.1.1 | 618 | 6/7/2022 |
| 1.1.0 | 602 | 6/7/2022 |
| 1.0.0 | 587 | 6/3/2022 |