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
source
share