Hi!
I'm trying to find a good documentation which states exactly, what query by example is capable of and what not.
In particular, I want to know, if query by example supports a search like the following: I want to get all Persons which have a location with a certain name.
public class Person
{
public virtual IList<Location> Locations { get; set; }
}
public class Location
{
public virtual string Name { get; set; }
}
Best Regards,
Oliver Hanappi