標準の SqlInsert で標準の INSERT を使用する場合に機能するコードによる NHibernate マッピングがあります
class ProductTranslationMapping : ClassMapping<ProductTranslation>
{
public ProductTranslationMapping ()
{
.
.
SqlInsert ("insert into product_translation(product_id, language_code, product_name, product_description) values(?,?,?,?)");
.
.
}
}
ただし、Postgresqlストアドプロシージャを使用したいので、挿入と更新の両方が同じルーチンを使用できます
class ProductTranslationMapping : ClassMapping<ProductTranslation>
{
public ProductTranslationMapping ()
{
.
.
SqlInsert ("select merge_product_translation(?,?,?,?)");
SqlUpdate ("select merge_product_translation(?,?,?,?)");
.
.
}
}
ただし、Postgresql 関数を使用すると、エラーが発生します。
Unhandled Exception:
NHibernate.StaleStateException: Unexpected row count: -1; expected: 1
at NHibernate.AdoNet.Expectations+BasicExpectation.VerifyOutcomeNonBatched (Int32 rowCount, IDbCommand statement) [0x00000] in <filename unknown>:0
at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch (IExpectation expectation) [0x00000] in <filename unknown>:0
at NHibernate.Persister.Entity.AbstractEntityPersister.Insert (System.Object id, System.Object[] fields, System.Boolean[] notNull, Int32 j, NHibernate.SqlCommand.SqlCommandInfo sql, System.Object obj, ISessionImplementor session) [0x00000] in <filename unknown>:0
[ERROR] FATAL UNHANDLED EXCEPTION: NHibernate.StaleStateException: Unexpected row count: -1; expected: 1
at NHibernate.AdoNet.Expectations+BasicExpectation.VerifyOutcomeNonBatched (Int32 rowCount, IDbCommand statement) [0x00000] in <filename unknown>:0
at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch (IExpectation expectation) [0x00000] in <filename unknown>:0
at NHibernate.Persister.Entity.AbstractEntityPersister.Insert (System.Object id, System.Object[] fields, System.Boolean[] notNull, Int32 j, NHibernate.SqlCommand.SqlCommandInfo sql, System.Object obj, ISessionImplementor session) [0x00000] in <filename unknown>:0
それが役立つ場合は、これが私の Postgresql ストアド プロシージャです。
create or replace function merge_product_translation(p_product_id int, p_language_code text, p_product_name text, p_product_description text) returns int
as
$$
begin
if not exists(select * from product_translation where product_id = p_product_id and language_code = p_language_code) then
insert into product_translation(product_id, language_code, product_name, product_description)
values(p_product_id, p_language_code, p_product_name, p_product_description);
else
update product_translation set
product_name = p_product_name,
product_description = p_product_description
where product_id = p_product_id and language_code = p_language_code;
end if;
return 1;
end;
$$
language 'plpgsql';
私も次のことを試しましたが、まだ運が悪く、すべてにエラーがあります:
SqlInsert ("perform merge_product_translation(?,?,?,?)");
SqlInsert ("call merge_product_translation(?,?,?,?)");
SqlInsert ("{call merge_product_translation(?,?,?,?)}");
エラーを回避するには、何を使用すればよいunexpected row count of -1
ですか? また、Google は -1 を削除するため、Google で検索するのも困難です。