【发布时间】:2020-07-24 13:00:55
【问题描述】:
我正在尝试使用 .net 核心调用存储过程。
我遇到了This 问题。在解决了我之前的问题后,我遇到了另一个语法错误。
PostgresException: 42883: 函数 GetActiveUserPackagesForOpenBillingPeriod(timestamp without time zone) 在尝试调用过程时不存在
这是代码:
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; }
}
【问题讨论】:
-
可能是
search_path问题。 -
先尝试在postgre上直接调用函数
-
@JuanCarlosOropeza 我运行了这个 Select * FROM GetActiveUserPackagesForOpenBillingPeriod(to_date('20190101','YYYYDDMM')) 并且错误提示“函数 getactiveuserpackagesforopenbillingperiod(date) 不存在提示:没有函数匹配给定的名称和参数类型。您可能需要添加显式类型转换。位置:15"
-
日期不是postgress中的关键字吗?
-
@cdev 是的。我将参数更改为“somedate”。还是一样的输出。我更改了查询中的参数。事实证明他们不按顺序。因此,在运行 select query IN db 后,我得到了理想的输出。但是,仍然面临同样的问题
标签: c# sql postgresql asp.net-core