在连接到另一个表后,我对同一对象的多个实例有一个小问题。为了测试,我Store
用两个创建一个Products
(ManyToMany-Relation)。以下片段希望描述我的问题。
var preResult = _session.QueryOver<Store>().List(); // One store
Product productAlias = null;
var result = _session.QueryOver<Store>()
.JoinAlias(s => s.Products, () => productAlias)
.List(); // Two instances of the same store
我什至认为这种行为是正确的,但我怎样才能防止多个实例呢?可以在查询中吗?
只是为了了解为什么我需要进行这种不必要的连接:我想根据不同的条件扩展查询,类似于:
Product productAlias = null;
var query = _session.QueryOver<Store>().JoinAlias(s => s.Products, () => productAlias);
if (!string.IsNullOrWhiteSpace(criteria.ProductName))
{
query.Where(Restrictions.On(() => productAlias.Name).IsInsensitiveLike(criteria.ProductName));
}
if (criteria.ProductType != null)
{
query.Where(s => productAlias.Type == criteria.ProductType);
}
var result = query.List();
在这里,我遇到了不同的问题,具体取决于标准。