Entity Framework 4.1 中缺少 DeleteObject 方法
这让我发疯。我收到错误消息
对象不包含DeleteObject的定义。
这是我的代码行,它产生了一个错误:
ctx.Tanks.DeleteObject(Tank);
我尝试从我的朋友创建的另一个 edmx
文件中引用另一个对象,然后一切都很好,DeleteObject
存在。我不认为我错过了项目中的任何参考资料。
项目本身包含 edmx 文件,我使用 DBContext 来创建 POCO。
有什么想法吗?
This is driving me crazy. I am getting error that
object doesn't contain definition for DeleteObject.
Here is my line of code that produces an error:
ctx.Tanks.DeleteObject(Tank);
I tried to reference another object from another edmx
file that my friend has created and then everything is fine, DeleteObject
exists. I don't think I miss any references in my project.
And project itself contains edmx file and I used DBContext
to create POCOs.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DbContext
API 定义DbSet
而不是ObjectSet
。 DbSet 有一个Remove
方法而不是DeleteObject
方法。您需要首先决定要使用哪个 API。如果是ObjectContext
或DbContext
。The
DbContext
API definesDbSet
s notObjectSet
s. DbSet has aRemove
method notDeleteObject
method. You need to first decide which API you are going to use. If it theObjectContext
orDbContext
.