具有参数的Dapper Postgres存储过程

时间:2019-03-13 09:48:30

标签: c# postgresql dapper

try
{
    return Connection.QuerySingleOrDefault<T>(sql, param, _transaction,
        commandType: CommandType.StoredProcedure);
}
catch (Exception orig)
{
    var ex = new Exception($"Dapper proc execution failed!", orig);
    AddDetailsToException(ex, sql, param);
    throw ex;
}

使用SQL:

CREATE OR REPLACE PROCEDURE public."GetChildBank"(
    "bankId" integer DEFAULT NULL::integer)
LANGUAGE 'sql'

AS $BODY$

     )
     select * from cte where ParentBank is not null
                and "Id" <> "bankId"
$BODY$;

我将Dapper与PostgreSQL一起使用,并使用存储过程获取数据 但它总是会引发错误。

它将转换为SQL语句

SELECT * 
FROM "GetChildBank"("bankId" := $1)

这是错误的。

1 个答案:

答案 0 :(得分:0)

Dapper似乎不是这里的问题。要在Postgresql中使用参数执行存储过程,它应该是

using (var connection = new NpgsqlConnection("Host=localhost;Username=postgres;Password=root;Database=sample"))
{
    connection.Open();
    var sql = "CALL \"GetChildBank\"(@bankId)";
    var p = new DynamicParameters();
    p.Add("@bankId", 11);
    var res = connection.Execute(sql, p);
}

要创建一个返回行集并从select中调用的函数,您需要使用create函数

CREATE OR REPLACE FUNCTION ""GetChildBank"("bankId" integer) RETURNS SETOF cte AS $$
SELECT * FROM cte where "ParentBank" IS NOT NULL AND "Id" <> $1;
$$ LANGUAGE sql;

https://www.postgresql.org/docs/11/sql-createfunction.html