I'm having trouble finding/figuring out how to map the following custom config section:
<section>
<collection1>
<subitem1 ... />
<subitem1 ... />
</collection1>
<collection2>
<subitem2 ... />
<subitem2 ... />
</collection2>
</section>
For a single sub collection, the following could would work:
public class Section : ConfigurationSection
{
[ConfigurationProperty("", IsRequired = true, IsDefaultCollection = true)]
[ConfigurationCollection(typeof(SubItem1Collection), AddItemName = "collection1")]
public SubItem1Collection Collection1
{
get { return (SubItem1Collection)this[string.Empty]; }
set { this[string.Empty] = value; }
}
}
When I try to add the second collection, it wont run.
public class Section : ConfigurationSection
{
[ConfigurationProperty("", IsRequired = true, IsDefaultCollection = true)]
[ConfigurationCollection(typeof(TemplateCollection), AddItemName = "collection1")]
public SubItem1Collection Collection1
{
get { return (SubItem1Collection)this[string.Empty]; }
set { this[string.Empty] = value; }
}
[ConfigurationProperty("", IsRequired = true, IsDefaultCollection = true)]
[ConfigurationCollection(typeof(SubItem2Collection), AddItemName = "collection2")]
public SubItem2Collection Collection2
{
get { return (SubItem2Collection)this[string.Empty]; }
set { this[string.Empty] = value; }
}
}
The error is:
Unable to cast object of type 'SubItem1Collection' to type 'SubItem2Collection'.
The error is obviously in the indexer this[string.Empty];. Can anybody point me in the right direction on this?
ConfigurationCollection(typeof(TemplateCollection), ...where your second hasConfigurationCollection(typeof(SubItem2Collection), ...– Thymine Nov 15 '12 at 23:17TemplateCollection, not change between the two. Was thinking a typo like that might have caused that casting error in your original code as well. I've only needed 1 non-default collection in a config before so wasn't certain on any better solution so thought I'd point that out :) – Thymine Nov 16 '12 at 16:31