3

我正在使用 ASP.NET MVC4。我完全不知道从哪里开始——我需要显示一个分层网格,每个级别都包含 CRUD 操作(编辑行、创建行、删除行)。我在实体框架 (.edmx) 中使用数据库优先方法。实体之间的关系由我的数据库中同一行中的“ParentId”值维护。我希望将“删除”功能级联到所有子级,就像 SQL Server 中的关系设置一样。

在此处输入图像描述

问题:如果我想使用 ParentId 的想法来拥有一个完整的带有 CRUD 操作的分层网格来维护分层关系,我将从哪里开始寻找?我已经查看了 ListViews,但我认为这不是我需要的。除非绝对必要,否则我不想过度复杂化,而且我更喜欢不使用自动售卖的解决方案。

4

2 回答 2

2

我最终使用了 MvcTreeView ( http://mvctreeview.codeplex.com/)。这在 Nuget 中也可用。此 Html Helper 旨在专门用于邻接列表(通过 ParentId 列或类似列维护其层次结构的分层表)。此帮助程序生成表中每条记录的分层树视图。此外,您可以通过在每个项目上添加单独的 CRUD 操作来进一步自定义,并且 CRUD 将像在普通 ASP.NET MVC w/Entity Framework 项目中一样正常工作。

要在“n”深度的树下一直级联删除,方法如下:

我最终创建了一个专门用于邻接列表的自定义模块。SQL 中的邻接列表是您有一个表维护“n”深度层次结构,其中 ParentId 列是返回到同一表中 Id 列(主键)的外键。

我创建了一个名为“Children”的助手类。此类的目的是返回给定父级的所有遍历的子级 ID 的列表。因此,如果您传入 6 级以上的父母的 Id,下面的代码将遍历所有 6 级并返回所有孩子、孙子、曾孙等的 Id 的完整列表。

我获得所有 Id 的子项列表而不是要删除的对象列表的原因是,如果我获得要删除的对象列表,我将不得不在不同的 DbContext 下获取这些对象,所以当我尝试实际删除它们,我会收到一条错误消息,指出该对象已分离(或类似的东西),因为它是在不同的上下文中实例化的。获取 ID 列表可以防止这种情况发生,我们可以使用相同的上下文来执行删除。

因此,从您的代码中调用此方法GetChildrenIds(List<int> immediateChildrenIds)并传入与ints所选节点的直接子节点相对应的列表。例如,要获取要传递给此方法的直接子级列表,请使用以下内容(这是基于使用 WebAPI 的 ASP.NET MVC 模式):

// keep in mind that `id` is the `id` of the clicked on node.

// DELETE api/region/5
public HttpResponseMessage Delete(int id)
{
     Region region = db.Regions.Find(id);

     List<int> tempRegionIds = new List<int>();
     List<int> immediateChildrenIds = (from i in db.Regions where i.ParentId == id select i.Id).ToList();
     List<int> regionsToDeleteIds = new List<int>();

     // the below is needed because we need to add the Id of the clicked on node to make sure it gets deleted as well
     regionsToDeleteIds.Add(region.Id);

     // we can't make this a static method because that would require static member
     // variables, and static member variables persist throughout each recursion
     HelperClasses.HandleChildren.Children GetChildren = new HelperClasses.HandleChildren.Children();

     // see below this code block for the GetChildrenIds(...) method
     tempRegionIds = GetChildren.GetChildrenIds(immediateChildrenIds);

     // here, we're just adding to regionsToDeleteIds the children of the traversed parent
     foreach (int tempRegionId in tempRegionIds)
     {
         regionsToDeleteIds.Add(tempRegionId);
     }

     // reverse the order so it goes youngest to oldest (child to grandparent)
     // is it necessary?  I don't know honestly.  I just wanted to make sure that
     // the lowest level child got deleted first (the one that didn't have any children)
     regionsToDeleteIds.Reverse(0, regionsToDeleteIds.Count);

     if (regionsToDeleteIds == null)
     {
         return Request.CreateResponse(HttpStatusCode.NotFound);
     }

     foreach (int regionId in regionsToDeleteIds)
     {
         // here we're finding the object based on the passed in Id and deleting it
         Region deleteRegion = db.Regions.Find(regionId);
         db.Regions.Remove(deleteRegion);
     }

     ...

下面的代码是返回子 ID 的完整列表的类。我把这段代码放在一个单独的帮助类文件中。DbContext_db是我所说的,当我说您不想在此上下文下检索对象列表时,否则Delete在控制器中实际调用它时将无法工作。因此,如您所见,我得到了一个 Id 列表,并进行了实际的 DbContext 调用以获取我的控制器中的对象,而不是这个帮助程序类。

public class Children
    {
        private Entities _db = new Entities(HelperClasses.DBHelper.GetConnectionString());
        private List<int> _childrenIds = new List<int>();
        private List<int> _childRegionIds = new List<int>();

        public List<int> GetChildrenIds(List<int> immediateChildrenIds)
        {
            // traverse the immediate children
            foreach (var i in immediateChildrenIds)
            {
                _childRegionIds.Add(i);
                _childrenIds = (from child in _db.Regions where child.ParentId == i select child.Id).ToList();
                if (_childrenIds.Any())
                    GetChildrenIds(_childrenIds);
                else
                    continue;
            }

            return _childRegionIds;
        }
    }
于 2013-10-03T15:34:40.573 回答
0

https://datatables.net/可能是一个好的开始。检查编辑器插件。

于 2013-09-20T19:06:25.430 回答