vote up 4 vote down star
3

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 the rest of my app is written using only this method. I found this forum post, but haven't been able to get it to work. Is there a way with the criteria API to get distinct result sets?

Edit: In doing this, I also wanted to exclude the Primary Key column, which is also an identity, and get the remaining distinct records. Is there a way to do this? As it is, the distinct records are returning duplicates because the primary key is unique for each row, but all other fields are the same.

flag

5 Answers

vote up 6 vote down check

Cannot see the forum post at this moment (broken link?), so maybe this is not the answer, but you can add a DistinctRootEntityResultTransformer:

session.CreateCriteria(typeof(Product)
    .Add(...)
    .SetResultTransformer(new DistinctEntityRootTransformer())
link|flag
Ok, I've never done this before, so 1 quick question. I have a primary key, which is an identity field. How can I exclude that field from the result set so that the distinct results are really distinct? I can clarify if that doesn't make sense. – Mark Struzinski Nov 25 '08 at 19:20
I don't know if that's possible. You could create a DTO with the other fields and query against that DTO, but it'd require using hql. – Juanma Nov 26 '08 at 10:40
Where does DistinctEntityRootTransformer come from? VS won't resolve it for me. Am I missing an assembly somewhere? – tyndall Feb 18 at 21:34
1  
In newer versions of NHibernate, you can use Transformers.DistinctRootEntity (it's a static property) – Juanma Feb 19 at 13:12
1  
It's very important to understand that this results in a client-side transformation of the data. Unlike the HQL equivalent, all data - whether distinct or not - is returned to NHibernate. NHibernate then does a client-side transformation of that data to yield only the distinct entities. This is potentially much less efficient than the HQL, or using a projection. – Kent Boogaart Sep 20 at 16:46
show 2 more comments
vote up 16 vote down

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.

link|flag
vote up 5 vote down

For what it is worth, NHibernate: Optimising Queries with Projections helped me with basically this same issue.

link|flag
vote up 1 vote down

I also ran into the problem of the non-distinct number of items (I use a fetch="join" in my mapping file). I used Linq To Nhibernate to solve the problem, which is used in the following way:

       var suppliers = (from supplier in session.Linq<Supplier>()
                        from product in supplier.Products
                        where product.Category.Name == produtCategoryName
                        select supplier).ToList().Distinct();
link|flag
vote up 0 vote down

Here is the Answer !!! I have 29 records in the table with 4 records repeated twice. I want only Distinct results. So, the total number of records should be 25.

below is test method

[TestMethod]
    public void UserApplicationsTest()
    {
        int usercount = 25;
        string query = "select from User u left outer join fetch u.ApplicationRequests ar";

        ISession session = NHibernateSessionManager.GetSession();


        IList<User> users = session.CreateQuery
           (
           query
           )
           .List<User>()
           .Distinct<User>().ToList();


        Assert.AreEqual(usercount, users.Count);

    }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.