我无法使用查询构建复杂的对象。我怎样做?
public class Person
{
public long Id { get; set; }
public string Name { get; set; }
public Contact Contact { get; set; }
}
public class Contact
{
public long Id { get; set; }
public string FoneNumber { get; set; }
}