Linq-to-Sql LoadWith返回null

时间:2017-02-28 13:25:25

标签: c# linq-to-sql

在我的代码中我有这个:

DataLoadOptions dlo = new DataLoadOptions();
dlo.LoadWith<Place>(p => p.Address);
context.LoadOptions = dlo;

var places = context.Places.Where(p => p.ID >= 100 && p.ID <= 200);

问题是返回的地址为空,我不知道为什么。

1 个答案:

答案 0 :(得分:0)

问题是关联中的子属性,当我将其更改为false时它设置为true它可以正常工作。 谢谢大家的帮助