Asp.net – Issue with Tuple Mapping Using AutoMapper
Source/destination types // Source public record AuthorRequest( string Name, string Biography, DateTime DateOfBirth); // Destination public record AuthorUpdateCommand( Guid Id, string Name, string Biography, DateTime DateOfBirth ) : AuthorCommand(Name, Biography, DateOfBirth), IRequest<Result<Updated>>; Mapping configuration public class AuthorProfile : Profile {…