Closed digitalpacman closed 1 month ago
I'm pretty sure tuples as response types are fine.
I just tried this and it worked like a charm.
public class TupleRequest : IRequest<(int TheInt, string TheString)>
{
public int TheInt { get; set; }
public string? TheString { get; set; }
}
public class TupleRequestHandler : IRequestHandler<TupleRequest, (int, string)>
{
public Task<(int, string)> Handle(TupleRequest request, CancellationToken cancellationToken)
{
return Task.FromResult(( request.TheInt, request.TheString! ));
}
}
The request handler worked but not the custom behavior
On Wed, Jul 24, 2024, 10:05 AM Zach Painter @.***> wrote:
I'm pretty sure tuples as response types are fine.
I just tried this and it worked like a charm.
public class TupleRequest : IRequest<(int TheInt, string TheString)> { public int TheInt { get; set; } public string? TheString { get; set; } }
public class TupleRequestHandler : IRequestHandler<TupleRequest, (int, string)> { public Task<(int, string)> Handle(TupleRequest request, CancellationToken cancellationToken) { return Task.FromResult(( request.TheInt, request.TheString! )); } }
— Reply to this email directly, view it on GitHub https://github.com/jbogard/MediatR/issues/1052#issuecomment-2248253212, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAFMKV4XGSWS4BWBMACQ7ATZN67D3AVCNFSM6AAAAABLL3FZQWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBYGI2TGMRRGI . You are receiving this because you authored the thread.Message ID: @.***>
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days.
This issue was closed because it has been stalled for 14 days with no activity.
I am looking to have the request return a tuple of (T, Common). However when implemented as a behavior, it appears to not match and execute. Looking around it looks like IPipelineBehavior only works when the generics are fixed as <T, T2> for the generics. I see everywhere that instead of IResult you want to use it as a constraint. However you can't use constraints for tuples like this.
I do not want to have to add this extra property to all my responses. But it looks like I'll have to build my own mediator pattern implementation, or switch to updating all my responses.
I would expect the bottom to output "Bar" but it outputs "Foo".