次のようにサブセレクトを使用して、Hibernate Criterion を構築しています
DetachedCriteria subselect =
DetachedCriteria.forClass(NhmCode.class, "sub"); // the subselect selecting the maximum 'validFrom'
subselect.add(Restrictions.le("validFrom", new Date())); // it should be in the past (null needs handling here)
subselect.add(Property.forName("sub.lifeCycle").eqProperty("this.id")); // join to owning entity
subselect.setProjection(Projections.max("validFrom")); // we are only interested in the maximum validFrom
Conjunction resultCriterion = Restrictions.conjunction();
resultCriterion.add(Restrictions.ilike(property, value)); // I have other Restrictions as well
resultCriterion.add(Property.forName("validFrom").eq(subselect)); // this fails when validFrom and the subselect return NULL
return resultCriterion;
ここまでは問題なく動作しますが、return ステートメントの前の最後の行の制限は、validFrom と subselect が NULL になると false になります。
私が必要としているのは、このケースを true として処理するバージョンです。おそらく、NVL や合体などを適用することによって。
どうすればいいですか?
アップデート: - - - - - - - - - - - - - -
sqlRestriction を使用した Peters のアイデアは、次のような where 句になります。
...
and (
nhmcode1_.valid_from = (
select
max(sub_.valid_from) as y0_
from
nhm_code sub_
where
sub_.valid_from<=?
and sub_.lc_id=this_.id
)
or (
nhmcode1_.valid_from is null
and sub.validFrom is null
)
)
...
その結果、次のようになります。
ORA-00904: "SUB_"."VALIDFROM": 不明な点があります
「無効な識別子」を意味するエラー メッセージ