Get Distinct result set from NHibernate using Criteria API?

后端 未结 6 2071
被撕碎了的回忆
被撕碎了的回忆 2020-12-03 02:50

I\'m trying to get distinct results using the Criteria API in NHibernate. I know this is possible using HQL, but I would prefer to do this using the Criteria API, because th

6条回答
  •  伪装坚强ぢ
    2020-12-03 03:38

    To perform a distinct query you can set the projection on the criteria to Projections.Distinct. You then include the columns that you wish to return. The result is then turned back into an strongly-typed object by setting the result transformer to AliasToBeanResultTransformer - passing in the type that the result should be transformed into. In this example I am using the same type as the entity itself but you could create another class specifically for this query.

    ICriteria criteria = session.CreateCriteria(typeof(Person));
    criteria.SetProjection(
        Projections.Distinct(Projections.ProjectionList()
            .Add(Projections.Alias(Projections.Property("FirstName"), "FirstName"))
            .Add(Projections.Alias(Projections.Property("LastName"), "LastName"))));
    
    criteria.SetResultTransformer(
        new NHibernate.Transform.AliasToBeanResultTransformer(typeof(Person)));
    
    IList people = criteria.List();
    

    This creates SQL similar to (in SQL Server at least):

    SELECT DISTINCT FirstName, LastName from Person
    

    Please be aware that only the properties that you specify in your projection will be populated in the result.

    The advantage of this method is that the filtering is performed in the database rather than returning all results to your application and then doing the filtering - which is the behaviour of DistinctRootEntityTransformer.

提交回复
热议问题