如何使用NHibernate中的Criteria API进行自定义投影?

时间:2009-04-05 12:44:45

标签: .net nhibernate hibernate hql criteria

使用HQL,我可以使用这样的动态实例化:

select new ItemRow(item.Id, item.Description, bid.Amount)
from Item item join item.Bids bid
where bid.Amount > 100

现在我需要使用Criteria API动态创建我的查询。我如何获得与使用HQL获得的相同结果,但使用Criteria API?

谢谢。

3 个答案:

答案 0 :(得分:7)

您可以使用AliasToBean结果转换器。 (Doc 1.2)它将每个投影分配给同名的属性。

session.CreateCriteria(typeof(Item), "item")
  .CreateCriteria("Bids", "bid")
  .SetProjection(Projections.ProjectionList()
    .Add(Projections.Property("item.Id"), "Id" )
    .Add(Projections.Property("item.Description"), "Description" )
    .Add(Projections.Property("bid.Amount"), "Amount" ))
  .Add(Expression.Gt("bid.Amount", 100))
  .SetResultTransformer(Transformers.AliasToBean(typeof(ItemRow)))
  .List();

答案 1 :(得分:1)

假设您使用的是NHibernate 2.0.1 GA,请参阅以下相关文档:

http://nhibernate.info/doc/nh/en/index.html#querycriteria-projection

希望有所帮助!

答案 2 :(得分:1)

使用投影时,返回类型将变为Object或Object [],而不是条件类型。你必须使用变压器。

这是一个简单的ResultTransformer:

 private class ProjectionTransformer implements ResultTransformer {
        private String[] propertysList;
        private Class<?> classObj;

        /**
         * @param propertysList
         */
        public ProjectionTransformer(String[] propertysList) {
            this.classObj = persistentClass;
            this.propertysList = propertysList;
        }

        /**
         * @param classObj
         * @param propertysList
         */
        public ProjectionTransformer(Class<?> classObj, String[] propertysList) {
            this.classObj = classObj;
            this.propertysList = propertysList;
        }

        @SuppressWarnings("unchecked")
        public List transformList(List arg0) {
            return arg0;
        }

        public Object transformTuple(Object[] resultValues, String[] arg1) {
            Object retVal = null;
            try {
                retVal = Class.forName(classObj.getName()).newInstance();
                int dot = -1;
                for (int i = 0; i < resultValues.length; i++) {
                    if ((dot = propertysList[i].indexOf(".")) > 0) {
                        propertysList[i] = propertysList[i].substring(0, dot);
                    }
                    PropertyUtils.setProperty(retVal, propertysList[i], resultValues[i]);
                }
            } catch (Exception e) {// convert message into a runtimeException, don't need to catch
                throw new RuntimeException(e);
            }
            return retVal;
        }
    }

以下是您使用它的方式:

ProjectionList pl = (...)
String[] projection = new String[]{"Id","Description","Bid.Amount"};
crit.setProjection(pl).setResultTransformer(new ProjectionTransformer(projection));

我没有对关系进行测试(例如:Bid.Amount)。