Here is an example of the input data, with the number of characters prefixing the '.' being close to the real scenario, and likewise for the number of characters appended to the '.' The length of the input will have around 30 XML nodes.
<Example1.Identifier1>29</Example1.Identifier1>
<Example1.Identifier2>blah</Example1.Identifier2>
<Example2.Identifier1>blah2</Example2.Identifier1>
<Example2.Identifier2>23</Example2.Identifier2>
Here is an example of a file it needs to be mapped to.
<Entity1>
<Column1></Column1>
<Column2></Column2>
</Entity1>
<Entity2>
<Column1></Column1>
<Column2></Column2>
</Entity2>
Here is the first way I can think of to map. This is straightforward and would require no parsing of the node name.
<Example1.Identifier1 EntityName="Entity1" ColumnName="Column1"/>
<Example1.Identifier2 EntityName="Entity1" ColumnName="Column2"/>
<Example1.Identifier1 EntityName="Entity2" ColumnName="Column1"/>
<Example1.Identifier2 EntityName="Entity2" ColumnName="Column2"/>
Here is the second way and would grab the bit which prefixes the '.' which would take some time, but on the other hand you would be searching through less nodes as you'd be able to narrow them down quicker.
<Example1>
<Identifier1 ColumnName="Column1/>
<Identifier1 ColumnName="Column2/>
</Example1>
<Example2>
<Identifier1 ColumnName="Column1/>
<Identifier1 ColumnName="Column2/>
</Example2>
My feeling is the second option is faster, around 6 characters before the . and you'd have to search through half the number of nodes, right? Ultimately it would be a dictionary of dictionaries in C#. But maybe the C# dictionary has efficiencies I am not aware of which means going with the first option makes more sense. I'm unsure but I'm not coding it up until tomorrow so any opinions much appreciated.
Kind regards, Thomas