我想做这样的事......
return GetSession()
.ToPagedList<Employee>(page, pageSize,
x=> x.SetFetchMode(DomainModelHelper.GetAssociationEntityNameAsPlural<Team>(), FetchMode.Eager));
但我不知道如何将此Func<ICriteria,ICriteria>
传递到ISession
或ICriteria
。
我有一个标准的分页扩展方法,这个扩展方法应该有一个重载我可以传递额外的ICriteria方法,这样我就可以另外设置FetchMode
或其他东西。
扩展方法:
public static class CriteriaExtensions
{
public static PagedList<T> ToPagedList<T>(this ISession session, int page, int pageSize) where T : Entity
{
var totalCount = TotalCount<T>(session);
return new PagedList<T>(session.CreateCriteria<T>()
.SetFirstResult(pageSize * (page - 1))
.SetMaxResults(pageSize * page)
.Future<T>().ToList(), page, pageSize, totalCount);
}
public static PagedList<T> ToPagedList<T>(this ISession session, int page, int pageSize, Func<ICriteria, ICriteria> action) where T : Entity
{
var totalCount = TotalCount<T>(session);
...
}
private static int TotalCount<T>(ISession session) where T : Entity
{
return session.CreateCriteria<T>()
.SetProjection(Projections.RowCount())
.FutureValue<Int32>().Value;
}
}
修改
没有过载,它看起来像这样:
return GetSession()
.CreateCriteria<Employee>()
.SetFetchMode(DomainModelHelper.GetAssociationEntityNameAsPlural<Team>(), FetchMode.Eager)
.ToPagedList<Employee>(page, pageSize);
扩展方法:
public static class CriteriaExtensions
{
public static PagedList<T> ToPagedList<T>(this ICriteria criteria, int page, int pageSize) where T : Entity
{
var copiedCriteria = (ICriteria) criteria.Clone();
var totalCount = TotalCount(criteria);
return new PagedList<T>(copiedCriteria
.SetFirstResult(pageSize * (page - 1))
.SetMaxResults(pageSize * page)
.Future<T>().ToList(), page, pageSize, totalCount);
}
private static int TotalCount(ICriteria criteria)
{
return criteria
.SetProjection(Projections.RowCount())
.FutureValue<Int32>().Value;
}
}
var copiedCriteria = (ICriteria) criteria.Clone();
行闻到了这里,但我不知道如何改变它。
您会建议采用哪种方法?
答案 0 :(得分:0)
根据我的理解,您试图从创建它的方法之外修改条件的行为。
因此你有:
public IList<T> GetPageOf<T>(int page, int pageSize, Func<ICriteria,ICriteria> modifier)
{
return Session.CreateCriteria<T>()
.SetFirstResult(pageSize * (page-1))
.SetMaxResults(pageSize)
.ToList<T>();
}
为修改器提供机会所需要做的就是将主体更改为:
return modifer(Session.CreateCriteria<T>) //the modifer gets first dibs on the criteria
.SetFirstResult(pageSize * (page-1))
.SetMaxResults(pageSize)
.ToList<T>();
请注意,在使用SetFirstResult或SetMaxResults的条件中更改多对多关系和多对一关系的提取模式可能会导致检索到错误的行数。
答案 1 :(得分:0)
有点晚了,但是嘿!
最简单的方法是扩展IQueryOver而不是ICriteria,如下所示:
public static PaginatedList<T> Paginate<T>(this IQueryOver<T, T> instance, int page, int pageSize) where T : Entity {
var countCriteria = instance.ToRowCountQuery();
var totalCount = countCriteria.FutureValue<int>();
var items = instance.Take(pageSize).Skip((page- 1)*pageSize).List<T>();
return new PaginatedList<T>(items, page, pageSize, totalCount.Value);
}
这将允许您进行所有急切的提取(它们将在行计数查询中删除,但标准将保持不变)。例如:
session.QueryOver<Customer>()
.Where(x => x.Status == CustomerStatus.Preferred)
.Fetch(x => x.Orders).Eager
.Paginate(1, 10);
将产生两个sql查询,如下所示:
对于所有项目:
SELECT this_.id, this_.url, order_.sum FROM Customers this_ LEFT OUTER JOIN orders order_ ON this_.id = order_.customer_id WHERE this_.status = 1 LIMIT 10;
为了计数:
SELECT count(*) as y0_ FROM Customers this_ WHERE this_.type = 1;