无法执行此操作。Context.Users.Load()

发布于 2024-12-15 00:48:43 字数 300 浏览 0 评论 0原文

http://msdn.microsoft.com/en-us/library/bb896376.aspx 这里它说的是加载方法

this.context = new MyEntities();
this.Context.Users.

,但我无法执行此操作。Context.Users.Load()

我无法找到加载方法 我能做些什么?

http://msdn.microsoft.com/en-us/library/bb896376.aspx here it says about a load method

this.context = new MyEntities();
this.Context.Users.

but i am not able to do this.Context.Users.Load()

i am not able to find the method load
what can i do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浮生未歇 2024-12-22 00:48:43

如果它没有为您提供 Load 方法,则意味着 Users 不是 EntityCollection。它是 ObjectQueryObjectSetDbSet。而不是 Load 使用:

var data = this.context.Users.ToList();

它还回答了你应该做什么?在开始搜索文档之前,您应该学会使用 IDE 来识别正确的类型。

If it doesn't offer you Load method it means that Users is not EntityCollection<User>. It is either ObjectQuery<User>, ObjectSet<User> or DbSet<User>. Instead of Load use:

var data = this.context.Users.ToList();

It also answers question what should you do? You should learn to use your IDE to identify correct type before you start searching in documentation.

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