无法执行此操作。Context.Users.Load()
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它没有为您提供
Load
方法,则意味着Users
不是EntityCollection
。它是ObjectQuery
、ObjectSet
或DbSet
。而不是Load
使用:它还回答了你应该做什么?在开始搜索文档之前,您应该学会使用 IDE 来识别正确的类型。
If it doesn't offer you
Load
method it means thatUsers
is notEntityCollection<User>
. It is eitherObjectQuery<User>
,ObjectSet<User>
orDbSet<User>
. Instead ofLoad
use: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.