1. NHibernate, many-to-many and HQL batch delete stackoverflow.comI have 2 entities with many-to-many relationship defined on them.
|
2. Combining Extra Lazy Map With Batch Fetching forum.hibernate.org@Entity class Fish { @CollectionOfElements() @LazyCollection(LazyCollectionOption.EXTRA) @JoinColumn(name = "fish_id") @MapKey(columns = @Column(name = "date")) public Map |
3. hibernate.cfg.xml batch mapping forum.hibernate.org |
4. re: hibernate mapping with batch-size and lazy forum.hibernate.orgpublic TenderOffer getTheOffer() { Set theOffers = getTenderOffers(); Iterator it = theOffers.iterator(); while (it.hasNext()) { TenderOffer to = (TenderOffer) it.next(); ... |