LINQ:我可以使用 DataLoadOptions 加载多于一代的后代吗?
我正在使用以下 DataLoadOptions:
DataLoadOptions options = new DataLoadOptions();
options.LoadWith<Family>(f => f.FamilyLanguages);
options.LoadWith<FamilyLanguage>(fl => fl.Language);
Family 对象返回一个 FamilyLanguages 列表,但 FamilyLanguages 只有一个 LanguageID,Language 对象为 null。
这是在 Visual Studio 2010 Beta 2 下运行的,但现在我使用的是 Visual Studio 2010 Release Candidate。这不再是正确的方法吗? LINQ 有什么变化吗?
I'm using the following DataLoadOptions:
DataLoadOptions options = new DataLoadOptions();
options.LoadWith<Family>(f => f.FamilyLanguages);
options.LoadWith<FamilyLanguage>(fl => fl.Language);
The Family object comes back with a list of FamilyLanguages, but the FamilyLanguages have only got a LanguageID, the Language object is null.
This was working under Visual Studio 2010 Beta 2, but now I'm using the Visual Studio 2010 Release Candidate. Is this no longer the proper way to do this? Has there been some change to LINQ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那应该有效。 Stackoverflow 并不是就 Beta 版错误联系微软的好方法 - 尝试直接联系微软。
That should work. Stackoverflow is not a good way to reach microsoft with beta bugs - try contacting microsoft directly.