Jason Mitchell

Results 6 comments of Jason Mitchell

From my perspective (as someone new to Bau) I would prefer option 2 if it's feasible. The less messing about configuring versions the better if you ask me. I like...

This is pretty fiddly. I think it's going to be tricky to come up with a universal solution for this which remains inline with the intention that Hallo requires no...

Example resolving `baseUrl` via abstract method: `CarListRepresentation`: ```csharp public class CarListRepresentation : PagedListRepresentation { private readonly IHttpContextAccessor _httpContextAccessor; public CarListRepresentation(CarRepresentation carRepresentation, IHttpContextAccessor httpContextAccessor) : base(carRepresentation) { _httpContextAccessor = httpContextAccessor; }...

Yeah you could. I think there are lots of options for this and I'm not sure that the library can cover all scenarios for everyone. What might help is a...

Providing this as an extension method might help ease of use.

Hi @dimitridaras, there is nothing built-in today but a default `Hal` which generates your output should be feasible. I'll have a think about how this could work.