Filter set class filtering collections in Hibernate

Source: Internet
Author: User

Hibernate's document reads: Collection filter is a special kind of query used for a persisted collection or array. The query string can refer to this, meaning the current array element

I think it's a bit hard to understand. In fact, his role is to filter out the data you don't need, and then return the result set to you. Now for an example:

String hql = "Select P from Picgroup p join P.images t where p.id=" + groupid;

Query query = session.createquery (HQL);

List List = Query.list ();

Picgroup Group = (picgroup) list.get (0);

View.setname (Group.getname ());

View.setid (GroupID);

Collection Image=session.filter (Group.getimages (), "Select this where This.state=´c´");//Here only data with state equals C is removed

Iterator ite = Image.iterator ();

Look, it's as simple as that. It is generally used in a one-to-many or many-to-many relationship when the other party's data is taken from one side.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.