I have a configuration file with below details :
<app>
<domain name="temp1" value=123/>
<domain name="temp2" value=455/>
</app>
in my code, I store value based on name. like if temp1 is the name,store value in column1 of table. if temp2 is the name, store value in column2 of table. I want to create multiple instances of domain based on value in configuration file, any suggestions on how to do this.