0

这是对我需要什么的更好解释,我认为大部分内容都已完成,但我无法在 ViewMode 上弄清楚。请如果有人可以帮助我,谢谢!

我有一个关键字列表(概述),我想编辑/插入和查看与特定关键字相关的信息或插入一个新关键字。在这个用于插入、编辑和查看的详细关键字页面上,我必须显示一个带有类别和主题的树视图,父节点是类别和子主题。用户可以检查这些主题中的任何一个(基于复选框的树视图)以将所选关键字与这些主题相关联。例如,对于科学类别,我有数学、物理、地理主题,如果我想要关键字几何,我可以检查树视图数学。在查看模式下,我只需要显示选定的主题和父类别,但是对于插入和编辑必须显示全部并且主题也被检查。

我有这个实体和导航属性以及一个数据示例:

实体 Option(OptionId, ParentId, Description, 虚拟导航属性 KeyWordOptions) KeyWordOption(OptionId, KeywordID, 虚拟导航属性 Option)

 Option Entity  
        OptionId    ParentID  Description
        1           0         Informatics
        2           1         Development
        3           0         Architecture
        4           1         Systems
        5           1         Hardware
        6           3         Civil Engineering
        7           1         Software


  KeyWordOption Entity
       OptionId   KeywordID    ID KeywordDescription
        1         8            8   Visual Studio
        2         8            2   Autocad
        4         2            5   Monitor
        5         5            9   Eclipse
        2         9
        7             8
        7             2
        7             9



Result Would be for Eclipse keyword(id = 9) at EditMode:

Informatics
    Development (checked)
    System      
    Hardware
    Software (checked)
Architecture
    Civil Engineering

结果将是 ViewMode 下的 Eclipse 关键字(id = 9):

Informatics
    Development (checked)
    Software (checked)

我的代码是:

BindTreeView(OptionList, null);

 private void BindTreeView(IEnumerable<Opcion> OptionList, TreeNode parentNode)
        {
            var nodes = OptionList.Where(x => parentNode == null ? x.ParentID == 0 : x.ParentID == int.Parse(parentNode.Value));

            if (mode != FormViewMode.View)
            {
                foreach (var node in nodes)
                {
                    TreeNode newNode = new TreeNode();
                    newNode.Text = node.Description.ToString();
                    newNode.Value = node.OptionID.ToString();

                    if (parentNode == null)
                    {
                        TreeViewOptions.Nodes.Add(newNode);
                    }
                    else
                    {
                        if (node.KeyWordOptions.Where(c => c.KeywordID == _idKeyWord).Count() > 0)
                        {
                            newNode.Checked = true;
                            parentNode.Expand();
                        }
                        parentNode.ChildNodes.Add(newNode);
                    }
                    BindTreeView(OptionList, newNode);               
                }

            }
            else
            {
                foreach (var node in nodes)
                {
                    TreeNode newNode = new TreeNode();
                    newNode.Text = node.Descripcion.ToString();
                    newNode.Value = node.OpcionID.ToString();

                    if (parentNode == null && node.KeyWordOptions.Where(c => c.KeywordID == _idKeyWord).Count() > 0)
                    {
                        TreeViewOptions.Nodes.Add(newNode);
                    }
                    else
                    {
                        if (node.KeyWordOptions.Where(c => c.KeywordID == _idKeyWord).Count() > 0)
                        {
                            newNode.Checked = true;
                            parentNode.Expand();
                        }

                        parentNode.ChildNodes.Add(newNode);

                    }
                    BindTreeView(OptionList, newNode);
                }

            }


        }
    }

我不知道我必须做什么来排除Nodes不匹配的KeywordId

4

1 回答 1

0

编辑

那么,也许这在你的一个循环中(顺便说一句,你应该重构)?

foreach (var node in nodes.Where
            (x => x.KeyWordOptions.Any(k => k.KeywordId == _idKeyWord));
于 2013-06-27T15:19:53.600 回答