6

不能在关联上使用 QBE,这非常令人沮丧。

我有一个包含大约 8 个多对一列的大型数据表。每列都有一个下拉列表来过滤表格。

让我们假设以下内容:

表用户

User { id, UserStatus, UserAuthorization }

我想使用这段代码:

Criteria crit = getSession().createCriteria(class);
crit.add(Example.create(userObject));

这不适用于以下示例userObject

User id=1 { UserStatus=Active, UserAuthorization=Admin }

因为 QBE 不支持集合。

解决此问题的一种方法是以这种方式使用它:

crit.createCriteria("UserStatus").add(Example.create(userStatusObject));
crit.createCriteria("UserAuthorization").add(Example.create(userAuthorizationObject));

我的问题是如何仅使用给定的User对象对其进行动态编程。除了使用 QBE 还有其他方法吗?

4

3 回答 3

3

您可以结合 QBE 和普通表达式来处理 QBE 不支持的部分

Criteria crit = getSession().createCriteria(class);
    .add(Example.create(userObject));
    .add(Expression.eq("UserStatus", userObject.getUserStatus()));
于 2012-02-16T17:24:31.423 回答
1

这是我发现在我的存储库基础中使用反射对我有用的通用答案:

protected T GetByExample(T example)
{
    var c = DetachedCriteria.For<T>().Add(Example.Create(example).ExcludeNone());
    var props = typeof (T).GetProperties()
        .Where(p => p.PropertyType.GetInterfaces().Contains(typeof(IEntityBase)));
    foreach (var pInfo in props)
    {
        c.Add(Restrictions.Eq(pInfo.Name, pInfo.GetValue(example)));
    }
    return Query(c);
}

请注意,我的所有实体都继承自 IEntityBase,这使我可以从对象属性中仅找到那些外键引用,以便将它们添加到条件中。您必须提供某种方式来执行查询(iecGetExecutableCriteria(Session))

于 2015-03-10T21:12:20.667 回答
0

这是可用于每个实体在hibernate中通过示例使用查询的代码。

  /**
                 * This method will use for query by example with association 
                 * @param exampleInstance the persistent class(T) object
                 * @param restrictPropertyName the string object contains the field name of the association
                 * @param restrictPropertyValue the association object 
                 * @return list the persistent class list
                 */
public List<T> queryByExampleWithRestriction(T exampleInstance, String restrictPropertyName, Object restrictPropertyValue) {
            log.info("Inside queryByExampleWithRestriction method of GenericHibernateDAO");
            List<T> list = null;
            try {
                Criteria criteria = getSession().createCriteria(exampleInstance.getClass());  
                Example example =  Example.create(exampleInstance);
                criteria.add(example);
                criteria.add(Restrictions.eq(restrictPropertyName, restrictPropertyValue));
                list = criteria.list();
                log.info("Executed the queryByExampleWithRestriction query with criteria successfully!");
            } catch(HibernateException e){
                throw (e);
            }
            finally{
                this.closeSession();
            }
            return list;  
        }
于 2016-12-10T05:18:40.200 回答