我有一个下拉列表,其中包含时间节点的属性值。我想根据父属性的值选择子子节点属性
xml如下
<info>
<time value="0-30">
<id t_id="1" speaker="Rajesh " desc="welcome" />
<id t_id="2" speaker="Deepak " desc="to the meeting" />
</time>
<time value="31-50">
<id t_id="1" speaker="Vishal" desc="welcome" />
<id t_id="2" speaker="Vikas" desc="to the meeting" />
</time>
</info>
当我在下拉菜单中选择 0-30 时,必须显示 Rajesh 和 Deepak
我正在尝试使用 linq
请帮我