Entity Framework 4.1 中缺少 DeleteObject 方法

发布于 2025-01-05 08:08:56 字数 333 浏览 0 评论 0原文

这让我发疯。我收到错误消息

对象不包含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 技术交流群。

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

发布评论

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

评论(2

酒浓于脸红 2025-01-12 08:08:56

DbContext API 定义 DbSet 而不是 ObjectSetDbSet 有一个 Remove 方法而不是 DeleteObject 方法。您需要首先决定要使用哪个 API。如果是 ObjectContextDbContext

The DbContext API defines DbSets not ObjectSets. DbSet has a Remove method not DeleteObject method. You need to first decide which API you are going to use. If it the ObjectContext or DbContext.

木槿暧夏七纪年 2025-01-12 08:08:56
  [HttpPost]
        public ActionResult Delete(IEnumerable<int> employeeIdsToDelete)
        {
            var lstemployee = _db.StudentEmployees.Where(x => employeeIdsToDelete.Contains(x.Id));
            foreach (var item in lstemployee)
            {
                _db.StudentEmployees.Remove(item);
            }
            _db.SaveChanges();

            return RedirectToAction("Index");
        }
  [HttpPost]
        public ActionResult Delete(IEnumerable<int> employeeIdsToDelete)
        {
            var lstemployee = _db.StudentEmployees.Where(x => employeeIdsToDelete.Contains(x.Id));
            foreach (var item in lstemployee)
            {
                _db.StudentEmployees.Remove(item);
            }
            _db.SaveChanges();

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