hateoas icon indicating copy to clipboard operation
hateoas copied to clipboard

A library to help you achieve HATEOAS using a fluent language and lambda expression for configuring your ASP.NET Core RESTful/Web APIs. Based on the REST application architecture style, Uniform Interf...

Results 6 hateoas issues
Sort by recently updated
recently updated
newest added

# Links at Collection Level Added

I've noticed that [JsonIgnore] attribute doesn't affect response when Sciensoft.Hateoas library is added to IServiceCollection. I would like to decorate some properties with this attribute to skip serialization. Alternate solution...

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.1 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...

dependencies

# Documentation and restructuring sample projects Tracker ID: **_NA_** Unit tests completed?: (Y/N) PR Branch **_NA_** Code Coverage & Build Info **_NA_** E2E Approved **_NA_** Related PR **_NA_** UX Approved...

It would be cool if link generation supports custom response objects. Example: { "data": [ { "firstName": "Jhon", "lastName": "Doe", "links": [ { "method": "GET", "uri": "https://localhost:5001/api/person/5", "relation": "Self", "message":...

To my knowledge, in current version it is not possible to add multiple policies when multiple routes return the same DTO. Let's suppose we have a DTO that returns ID...