我有一个从配置文件中读取的配置部分。 xml看起来像这样
<GroupBySection>
<Groups>
<Group name="Source" product="Product One">
<Items>
<Item name="2003" type="radio" />
<Item name="2007" type="radio" />
<Item name="2010" type="radio" />
<Item name="2013" type="radio" />
<Item name="o365" type="radio" />
</Items>
</Group>
<Group name="Target" product="Product One">
<Items>
<Item name="2003" type="radio" />
<Item name="2007" type="radio" />
<Item name="2010" type="radio" />
<Item name="2013" type="radio" />
<Item name="o365" type="radio" />
</Items>
</Group>
<Group name="Source" product="Product Two">
<Items>
<Item name="2003" type="radio" />
<Item name="2007" type="radio" />
<Item name="2010" type="radio" />
<Item name="2013" type="radio" />
<Item name="o365" type="radio" />
</Items>
</Group>
</Groups>
</GroupBySection>
当我调用此配置部分并进行计数时,我只看到第一个产品结果。产品二不显示,因为名称也是“来源”。我希望它显示所有它们,无论名称是否相同。所以简而言之,它不会返回任何与它已经遇到的相同名称的东西,即使我想要它。谁能指出我做错了什么?
以下代码
的ConfigurationSection
public class GroupByConfiguration : ConfigurationSection
{
[ConfigurationProperty("Groups")]
public GroupByElementCollection Groups
{
get { return ((GroupByElementCollection)(base["Groups"])); }
set { base["Groups"] = value; }
}
}
元素部分
public class GroupByElement : ConfigurationElement
{
// Group Attributes
[ConfigurationProperty("name", IsRequired = true)]
public string Name
{
get { return (string)base["name"]; }
}
[ConfigurationProperty("product", IsRequired = true)]
public string Product
{
get { return (string)base["product"]; }
}
[ConfigurationProperty("Items")]
public ItemElementCollection Items
{
get { return ((ItemElementCollection)(base["Items"])); }
set { base["Items"] = value; }
}
}
元素集合
[ConfigurationCollection(typeof(GroupByElement))]
public class GroupByElementCollection : ConfigurationElementCollection
{
internal const string PropertyName = "Group";
public override ConfigurationElementCollectionType CollectionType
{
get
{
return ConfigurationElementCollectionType.BasicMapAlternate;
}
}
protected override string ElementName
{
get
{
return PropertyName;
}
}
protected override bool IsElementName(string elementName)
{
return elementName.Equals(PropertyName, StringComparison.InvariantCultureIgnoreCase);
}
public override bool IsReadOnly()
{
return false;
}
protected override ConfigurationElement CreateNewElement()
{
return new GroupByElement();
}
protected override object GetElementKey(ConfigurationElement element)
{
return ((GroupByElement)(element)).Name;
}
public GroupByElement this[int idx]
{
get { return (GroupByElement)BaseGet(idx); }
}
}
我确信这是愚蠢的事情:)提前感谢!
答案 0 :(得分:0)
有点受过教育的猜测,但似乎是方法:
protected override object GetElementKey(ConfigurationElement element)
{
return ((GroupByElement)(element)).Name;
}
是最可能的罪魁祸首。具体来说,根据这个页面:
在派生类中重写时获取指定配置元素的元素键。
换句话说,该方法返回.NET可以在子文件夹中的配置文件中标识标记的方法,该子文件夹可以覆盖父标记。在这方面,限制键是唯一的似乎是合理的,因此通过将((GroupByElement)(element)).Name
属性指定为键,您说它必须是唯一的。
解决此问题的一种方法可能是返回Name
和Product
,另一种方法是返回集合中的Name
和索引(如果可能的话)。换句话说,如果你不关心覆盖行为,那么每次只返回一个唯一的Guid
。