给出以下示例POCOS:
public class Order
{
[AutoIncrement]
public int Id { get; set; }
...
[Reference]
public List<Item> Items { get; set; }
}
public class Item
{
[AutoIncrement]
public int Id { get; set; }
....
}
有没有办法选择一组订单并包含相关的商品?类似于实体框架中的.include()。
就Service Stack API而言,LoadSingleById()的多实体版本会急切地加载引用的字段。