Is there any good documentation on NHibernate request with an example?

I am trying to find good documentation that clearly indicates which request for an example is capable and what is not.

In particular, I want to know if the query in the example supports the search as follows: I want all persons who have a place with a specific name.

public class Person
{
    public virtual IList<Location> Locations { get; set; }
}

public class Location
{
    public virtual string Name { get; set; }
}

Best regards,
Oliver Hanappi

+3
source share
2 answers

2 2 NHibernate (). . , , .

0

, . . Criteria, HQL, .

+1

Source: https://habr.com/ru/post/1713053/


All Articles