LINQ:我可以使用 DataLoadOptions 加载多于一代的后代吗?

发布于 2024-08-20 18:22:05 字数 436 浏览 4 评论 0原文

我正在使用以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来日方长 2024-08-27 18:22:05

那应该有效。 Stackoverflow 并不是就 Beta 版错误联系微软的好方法 - 尝试直接联系微软。

That should work. Stackoverflow is not a good way to reach microsoft with beta bugs - try contacting microsoft directly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文