| Author |
Hibernate Criteria when using many to one relation
|
kumar shiva
Greenhorn
Joined: Jul 04, 2012
Posts: 12
|
|
am new to Hibernate Criteria, please help me
am creating a Member pojo class, in this class this Member class is having two foreign ke ys businessunitid(Many to one relation), role_id(one to one relation) of classes BusinessUnit, Role respectively.(role,businessunit are references of Role,BusinessUnit respectively)
crit = hibsession.createCriteria(Member.class)
.createCriteria("role")
.add(Restrictions.eq("role_id",role_id));
this statement working fine but
Below statement giving Hibernate Exception:
crit = hibsession.createCriteria(Member.class)
.createCriteria("businessunit ")
.add(Restrictions.eq("businessunitid",businessunitid));
|
 |
 |
|
|
subject: Hibernate Criteria when using many to one relation
|
|
|