代码之家  ›  专栏  ›  技术社区  ›  Christopher Klewes

标准API中是否有类似于restrictions.eq(true,false)的内容?

  •  11
  • Christopher Klewes  · 技术社区  · 14 年前

    我需要一个通用的 Criterion 强制结果为零匹配。

    类似的东西 Restrictions.eq(true, false) ?

    3 回复  |  直到 6 年前
        1
  •  8
  •   Stefan Steinegger    6 年前

    我用在NHibernate(c)中:

    Restrictions.Sql("(1=0)");
    

    或在Hibernate(Java)中:

    Restrictions.sqlRestriction("(1=0)");
    

    -)

        3
  •  0
  •   S'chn T'gai Spock    7 年前

    我在Hibernate中使用了以下代码,它对我很有用:

    Restrictions.sqlRestriction("1=0")