Are there any arithmetic operation projections in NHibernate?

前端 未结 2 460
一生所求
一生所求 2020-12-30 14:37

I would like to get this SQL from NHibernate:

SELECT SUM(color_pages) * SUM(total_pages)
FROM connector_log_entry
GROUP BY department_name

2条回答
  •  旧时难觅i
    2020-12-30 15:08

    Arithmetic operators can be used in criteria queries via the VarArgsSQLFunction SQL function. In your particular case, this would look something like:

    Session.QueryOver()
        .SelectList(list =>
            list.SelectGroup(m => m.DepartmentName)
                .WithAlias(() => dto.Department)
                .Select(Projections.SqlFunction(
                    new VarArgsSQLFunction("(", "*", ")"),
                    NHibernateUtil.Int32,
                    Projections.Sum(m => m.TotalPages),
                    Projections.Sum(m => m.ColorPages)))
                .WithAlias(() => dto.TotalColorPercentage))
        .TransformUsing(Transformers.AliasToBean());
    

    This technique injects strings directly into the generated SQL, so you'll need to make sure the underlying database supports the operators you use.

提交回复
热议问题