使用linq填充下拉列表到xml的更好方法

时间:2009-02-17 13:58:47

标签: c# linq linq-to-xml

我有一堆下拉列表,我使用linq从xml文件中填充。 我已尝试以下方法填充它们,它以某种方式工作, 唯一的问题是当一个元素缺失时,例如副标题我在下拉列表中得到一个空白区域。 此外,我没有得到每个下拉列表的明确值,而是所有值。 见下面的代码

 var feeds = (from item in doc.Descendants("item")

                     select new
                     {
                         channel = (string)item.Element("channel") ?? null,
                         specialtoken = (string)item.Element("specialtoken") ?? null,
                         subchannel = (string)item.Element("subchannel") ?? null,
                         subtitle = (string)item.Element("subtitle") ?? null,
                     }).ToList().Distinct();


        cboChannel.DataSource = feeds;
        cboChannel.DataBind();

        cboSpecialToken.DataSource = feeds;
        cboSpecialToken.DataBind();

        cboSubChannel.DataSource = feeds;
        cboSubChannel.DataBind();

        cboSubtitle.DataSource = feeds;
        cboSubtitle.DataBind();
        ...And so on....

是否有比将每个价值项拆分为单独查询更好的方法,例如?

干杯, 克里斯

var specialtoken = (from item in doc.Descendants("item")
                     select new
                     {
                         specialtoken = (string)item.Element("specialtoken") ?? null,
                     }).ToList().Distinct();


var channel= (from item in doc.Descendants("item")
                     select new
                     {
                         channel = (string)item.Element("channel") ?? null,
                     }).ToList().Distinct();
etc. etc.

1 个答案:

答案 0 :(得分:1)

我认为最简单的方法是保留原始查询,然后对每个下拉菜单执行子查询,以确保他们关心的项目中有值。

cboChannel.DataSource = feeds.Where(x => !String.IsNullOrEmpty(x.channel)).ToList();

我觉得这更简洁