The only thing that seems a problem is that placerorderidentifierdomain is Object reference of type Identifierdomain and Identifierdomain class has string property assigningAuthorityId. (I am talking abt string values passesd as 1st param to Restriction's static methods).
But that should work shouldnt it ?
Query
Code:
Criteria criteria = session.createCriteria(myhibernate.valueobjects.Orders.class)
.add(Restrictions.eq("patient.personKey",new Long(patient.getKey().longValue())))
.add(Restrictions.ilike("placerOrderNbr",placerIdentifier.getIdValue()));
if (placerIdentifier.getIdentifierDomain()==null)
criteria.add(Restrictions.isNull("placerorderidentifierdomain.assigningAuthorityId"));
else
criteria.add(Restrictions.eq("placerorderidentifierdomain.assigningAuthorityId",
placerIdentifier.getIdentifierDomain().getAssigningAuthorityID()));
Full stack trace of any exception that occurs:Code:
Caused by: org.hibernate.QueryException: could not resolve property: placerorderidentifierdomain.assigningAuthorityId of: myhibernate.valueobjects.Orders
Mapping document1) Orders class : Orders.hbm.xml
Code:
<class name="Orders" table="ORDERS">
<id name="ordersKey" column="ORDERS_KEY" type="java.lang.Long">
<generator class="native"/>
</id>
<property name="placerOrderNbr" column="PLACER_ORDER_NBR" type="string" />
<many-to-one name="placerorderidentifierdomain" column="PLACER_ORDER_NBR_IDD" class="Identifierdomain" />
<many-to-one name="patient" column="PATIENT_KEY" class="Patient" />
</class>
2) Identifierdomain class : Identifierdomain.hbm.xml
Code:
<class name="Identifierdomain" table="IDENTIFIERDOMAIN">
<id name="identifierdomainKey" column="IDENTIFIERDOMAIN_KEY" type="java.lang.Long">
<generator class="native"/>
</id>
<property name="assigningAuthorityId" column="ASSIGNING_AUTHORITY_ID" type="string" />
</class>