c# choosing class properties with a variable? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T17:24:21Zhttp://stackoverflow.com/feeds/question/792752http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable1c# choosing class properties with a variable?Gareth2009-04-27T09:05:51Z2009-04-27T10:31:36Z
<p>Hello All,</p>
<p>I'm adding functionality to one of our existing (but broken) systems. It grabs an XML file from a web service, parses it and then does some stuff before packing it back into our database.</p>
<p>the previous developer (who has now left) left me this little gem:</p>
<p><a href="http://dl.getdropbox.com/u/109069/wut.GIF" rel="nofollow">http://dl.getdropbox.com/u/109069/wut.GIF</a></p>
<p>and I wonder if there's a way round this?</p>
<p>Can I loop through each node and assign to the wo object by its name?</p>
<p>something like this (pseudo code):</p>
<pre><code> foreach XmlNode xn in WorkorderNodeTree
{
//find out the property name of the current node
//match to the property in the workorder class
//set the value equal
wo.<xn.name> = xn.innertext
}
</code></pre>
<p>Now the only thing I found which gets close is this (from the interweb):</p>
<pre><code> foreach (XmlNode xl in myXML)
{
object o = Assembly.GetExecutingAssembly().CreateInstance("Workorder", true);
Type t = xl.Name.GetType();
PropertyInfo pi = t.GetProperty(xl.Name);
pi.SetValue(o, xl.InnerText, null);
}
</code></pre>
<p>but it returns a null reference exception on o. I am a little confused, any tips?</p>
<p>I presume to do this, I need to use reflection or generics, but I've never hit upon these things before - can anyone advise anything which might point me in the right direction or at least try to explain reflection?</p>
<p>Many thanks all, apologies for the hideously long post!</p>
<p>EDIT: </p>
<p>Thanks, Very deep and sincere thanks go to Fredrik and Rytmis - both of you are white knights in my drab office environment. Rytmis' code edits have solved the issue but I have learned much in this hour or so - Thanks guys, really appreciate it.</p>
http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792768#7927680Answer by Fredrik Mörk for c# choosing class properties with a variable?Fredrik Mörk2009-04-27T09:10:15Z2009-04-27T09:10:15Z<p>Try the following code to create the Workorder instance instead:</p>
<pre><code>Workorder o = Activator.CreateInstance<Workorder>();
</code></pre>
http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792770#7927701Answer by Anton Gogolev for c# choosing class properties with a variable?Anton Gogolev2009-04-27T09:11:00Z2009-04-27T09:11:00Z<p>Try <a href="http://www.codeplex.com/AutoMapper" rel="nofollow">AutoMapper</a> or Custom Mapping in <a href="http://bltoolkit.com/Doc/Mapping/MapToJson.htm" rel="nofollow">BLToolkit</a>.</p>
http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792781#7927810Answer by Davide Vosti for c# choosing class properties with a variable?Davide Vosti2009-04-27T09:14:58Z2009-04-27T09:14:58Z<p>As Fredrik said, </p>
<pre><code>Workorder o = Activator.CreateInstance<Workorder>();
</code></pre>
<p>will fix the null reference. The rest of code for copying the properties is right.</p>
http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792818#7928180Answer by Rytmis for c# choosing class properties with a variable?Rytmis2009-04-27T09:29:57Z2009-04-27T09:29:57Z<p>I think your code may need a bit of adjustment. </p>
<pre><code>foreach (XmlNode xl in myXML)
{
object o = Assembly.GetExecutingAssembly().CreateInstance("Workorder", true);
Type t = xl.Name.GetType();
PropertyInfo pi = t.GetProperty(xl.Name);
pi.SetValue(o, xl.InnerText, null);
}
</code></pre>
<p>This creates a new instance of WorkOrder for every property you're setting, and also tries to reflect the PropertyInfo from Name.GetType() which is actually typeof(String), and not typeof(WorkOrder) like you'd want it to be. Instead:</p>
<pre><code>WorkOrder w = new WorkOrder();
Type t = typeof(WorkOrder);
foreach (XmlNode xl in myXML)
{
PropertyInfo pi = t.GetProperty(xl.Name);
pi.SetValue(w, xl.InnerText, null);
}
</code></pre>
<p>[edit] You may also want to specify some binding flags:</p>
<pre><code> PropertyInfo pi = t.GetProperty(xl.Name, BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase);
</code></pre>
<p>That may or may not be required. I can never remember what the defaults are. :)</p>
http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792890#7928901Answer by Mehmet Aras for c# choosing class properties with a variable?Mehmet Aras2009-04-27T09:55:06Z2009-04-27T09:55:06Z<p>How about letting the xml serialization (System.Xml.Serialization.XmlSerializer) do the work for you? Depending on the xml, you may simply use Deserialize method that returns a WorkOrder object initialized from the xml data. If the xml you get does not directly map to WorkOrder, you can try to use various Xml attributes on WorkOrder to class to have more control over the way WorkOrder serializes. You can also take a look at DataContractSerializer which is faster and more flexible but you don't have as much control over the serialization as you do with XmlSerialization.</p>
<p>You could also consider adding a static method to WorkOrder class, FromXml, that takes xml and return WorkOrder object. Internally, you can use deserialization or you could even simply initialize properrties in a switch without messing with reflection. </p>
http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792941#7929411Answer by Peter Wone for c# choosing class properties with a variable?Peter Wone2009-04-27T10:10:18Z2009-04-27T10:10:18Z<p>Call me Mr Silly, but why don't you change the WorkOrder constructor to take an <code>XmlNode</code> parameter, shovel all the ugly assignments into it, and just invoke it like this:</p>
<pre><code>WorkOrder wo = new WorkOrder(xmlnode);
</code></pre>
http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792996#7929960Answer by Guillaume for c# choosing class properties with a variable?Guillaume2009-04-27T10:31:36Z2009-04-27T10:31:36Z<p>You shouldn't use reflection, use existing .Net serialization or leave (ugly but working) static code.</p>
<p>What about other types than string? What if the xml format doesn't match?</p>