Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
2k views

Projections in NHibernate

suppose in an entity there are attributes id, username, age, address. Now I just want id and username and I use this code for it. Projections enable the returning of something other than a list of ...
2
votes
1answer
836 views

ResultTransformer in Hibernate return null

I'm using ResultTransformer to select only particular properties from entity, just i don't need all properties from entity. But the problem i faced is when a property is "one-to-many". Here is a ...
2
votes
1answer
2k views

getting result set into DTO with native SQL Query in Hibernate

I have a query like below select f.id, s.name, ss.name from first f left join second s on f.id = s.id left join second ss on f.sId = ss.id If I could use HQL, I would have used HQL constructor ...
1
vote
0answers
74 views

How to get Hibernate ResultTransformer to work with entity that have relations with other entities

i have Employee , Role , Department domains Employee , Role have many to many relationship. Employee , Department have many to one relationship. @ManyToOne(cascade = CascadeType.ALL) ...
0
votes
0answers
120 views

Hibernate ResultTransformer with addEntity - what's the correct syntax?

Consider the following query: "SELECT a.code as code,{locFrom.*} " + "FROM audit.auditlogrecord a " + "LEFT OUTER JOIN iwrs.location locFrom on locFrom.id=old_value " I want to map the result to ...
0
votes
1answer
277 views

Getting mapped entities from an ISQLQuery without AddEntity

consider these POCOs: class Foo { int Id {get;set;} string Name {get;set;} } class Bar { int Id {get;set;} string PropA {get;set;} Foo PropB {get;set;} } Now what i want to achieve is ...
0
votes
0answers
3k views

Hibernate dynamic query performance issue solutions using result transformer!

This is a important addition especially to solve performance issues while being able to write efficient dynamic HQL queries. But, how do we modify the HQL transformer in case of loading a specific ...