web-dev-qa-db-ja.com

NHibernate QueryOver APIを使用して行数を取得するにはどうすればよいですか?

NHibernate3.xの一部であるQueryOverAPIを使用しています。行数を取得したいのですが、使用しているメソッドはすべてのオブジェクトを返し、コレクションの数を取得します。行数の整数/長い値を返す方法はありますか?

私は現在使用しています:

_session.QueryOver<MyObject>().Future().Count()
29
Jim Geurts

APIを少しいじった後、これでうまくいきます。

__session.QueryOver<MyObject>()
    .Select(Projections.RowCount())
    .FutureValue<int>()
    .Value
_

将来として返したくない場合は、代わりにSingleOrDefault<int>()を取得できます。

42
Jim Geurts

別の方法

var count = Session.QueryOver<Employer>()
    .Where(x => x.EmployerIsActive)
    .RowCount();
33
Rafael Mueller

別の方法:

int employerCount = session
  .QueryOver<Employer>()
  .Where(x => x.EmployerIsActive) // some condition if needed
  .Select(Projections.Count<Employer>(x => x.EmployerId))
  .SingleOrDefault<int>();
8
Petar Repac

私はこのように使用しています:

public int QuantidadeTitulosEmAtraso(Sacado s)
    {
        TituloDesconto titulo = null;
        Sacado sacado = null;

        var titulos =
                _session
                .QueryOver<TituloDesconto>(() => titulo)
                .JoinAlias(() => titulo.Sacado, () => sacado)
                .Where(() => sacado.Id == s.Id)
                .Where(() => titulo.Vencimento <= DateTime.Today)
                .RowCount();

    }
7
Helder Gurgel