对不起,我需要查询一个收藏品, 并归还祖父母、父母和孙子女, 以孙子女财产为基础。
例如,在下面的对象下,我想得到引号、比率(父母)和计划(大子女),只要条件与计划ID相符。
public class Quote
{
public int Id { get; set; }
public string Type { get; set; }
public string ParentType { get; set; }
public decimal ValueMax { get; set; }
public virtual ICollection<Rate> Rates { get; set; }
}
public class Rate
{
public int Id { get; set; }
public decimal ValueMax { get; set; }
public ICollection<Plan> Plans { get; set; }
}
public class Plan
public int Id { get; set; }
public decimal Price { get; set; }
}