奇怪的“过程期望参数未提供”异常

我正在尝试在.Net Core中构建REST API。我的代码基于Tim Corey的YouTube系列。

我的POST命令遇到了一些问题。当我尝试将数据发送到SQL Server时,出现以下异常。我发送的数据显然有一个“名称”参数,那么为什么会出现此错误?

谢谢!

CREATE PROCEDURE [dbo].[spPlayerInfo_Insert]
    @Name nvarchar(50),
    @NetEarnings money,
    @VPIP decimal,
    @PreflopRaise decimal,
    @FoldToFlopCb decimal

AS
begin
    set nocount on;

    insert into dbo.PlayerInfo(Name, NetEarnings, VPIP, PreflopRaise, FoldToFlopCb)
    values (@Name, @NetEarnings, @VPIP, @PreflopRaise, @FoldToFlopCb);

end

enter image description here