NHibernate - 使用 ICriteria 进行寻呼和可选的 ICriteria 调用

问题描述 投票:0回答:2

我想做这样的事情...

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();
这里有味道,但我不知道如何改变它。

您建议采用哪种方法?

c# pagination nhibernate icriteria
2个回答
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 的条件中多对多和多对一关系的获取模式可能会导致检索到错误的行数。


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;
© www.soinside.com 2019 - 2024. All rights reserved.