简体   繁体   中英

nHibernate criteria for reversed LIKE

I have the following two entities:

public class Entity1 { public IList e2 { get; set; } }

public class Entity2 { public string Title { get; set; } }

I only have repository for Entity1, I know I can do a LIKE query with the following criteria:

criteria.CreateAlias("e2", "e1e2").Add(Restrictions.LIKE("Title", "needle", Match.Anywhere);

But I need to search the reverse like:

Restrictions.LIKE("needle", "Title", Match.Anywhere)

How can I do it?

I don't think it's available out of the box.

You can either create it using a SQLCriterion, or use HQL.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM