繁体   English   中英

PostgresException:42883:尝试调用过程时,函数X(没有时区的时间戳)不存在

[英]PostgresException: 42883: function X(timestamp without time zone) does not exist when trying to call procedure

我试图使用.net核心调用存储过程。

我有这个问题。 修复我以前的问题后,我有另一个语法错误。

PostgresException:42883:函数GetActiveUserPackagesForOpenBillingPeriod(没有时区的时间戳)在尝试调用过程时不存在

这是代码:

        var date = DateTime.Now;
        List<ActivePackageForOpenBillingPeriod> activeUserPackagesForOpenBillingPeriod = null;

        using (var conn = new NpgsqlConnection ("Host=localhost;Port=xxx;Database=postgres;Username=postgres;Password=xxx;TrustServerCertificate=true;ApplicationName=xxx;")) 
        {                
            var s = "Select * FROM \"GetActiveUserPackagesForOpenBillingPeriod\"({0})";
            activeUserPackagesForOpenBillingPeriod = context.ActivePackageForOpenBillingPeriods.FromSql (s, date).ToList ();

        }

存储过程

create or replace function "GetActiveUserPackagesForOpenBillingPeriod"(somedate timestamp without time zone) returns TABLE("Amount" numeric, "Package" integer, "User" integer, "Account" integer, "AcceptanceActID" integer, "HasChangedPackage" boolean)
language plpgsql
as
$$
DECLARE
    BEGIN
      RETURN QUERY
        SELECT
            up."TotalAmount",
            up."PackageID",
            u."ID" AS "UserId",
            a."ID" AS "AccountId",
            th."AcceptanceActID",


            CASE
                  WHEN count(DISTINCT tl."PackageID") IN (0,1)  THEN false
                  ELSE true
            END AS "HasChangedPackage"

        FROM public."Accounts" as a
            LEFT JOIN billing."TransactionHeaders" AS th ON th."AccountID" = a."ID"
            INNER JOIN security."Users" AS u ON u."AccountID"= a."ID"
            INNER JOIN billing."UserPackages" AS up ON up."UserID"=u."ID" AND COALESCE(th."Date", date) BETWEEN up."StartDate" AND COALESCE(up."EndDate", date)
            LEFT JOIN billing."TransactionLines" AS tl ON th."Id" = tl."TransactionHeaderID"

        WHERE th."AcceptanceActID" IS NULL AND a."StatusID"!=4 AND a."StatusID"!=3 AND up."StatusID"=1


        GROUP BY a."ID", u."ID", up."PackageID", 
up."TotalAmount",th."AcceptanceActID";
RETURN;

END;
$$;

alter function "GetActiveUserPackagesForOpenBillingPeriod"(timestamp)  
owner 
to postgres;

public class ActivePackageForOpenBillingPeriod {
    public int Id { get; set; }

    public int AccountID { get; set; }

    [ForeignKey ("AccountID")]
    public Account Account { get; set; }
    public int UserID { get; set; }

    [ForeignKey ("UserID")]
    public User User { get; set; }
    public int PackageID { get; set; }

    [ForeignKey ("PackageID")]
    public Package Package { get; set; }
    public decimal TotalAmount { get; set; }
    public bool HasChangedPackage { get; set; }

}

不要使用timestamp参数,必须使用varchar参数。 在存储过程中,您可以更改时间戳的类型varchar。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM