Hello All -

not sure if this is the proper forum, but my issue is with xml/
nhibernate/activerecord, maybe someone here will have some
expertise...



I've got a situation where I've got real simple XML input. e.g.


<runs  xmlns="http://www.xxxblah.com/runs";>
  <run runNumber='354989'>
         .
         .
      <Ink1>-9028</Ink1>
         .
         .
  </run>
</runs>


This maps to the property:


[Property]
public virtual string Ink1
{
            get { return _ink1; }
            set { _ink1 = value; }



}


No problem

Now the XML input needs to expand to the structure:


<Ink1>
      <Front>
           <FirstInk>-903</FirstInk>
           <SecondInk>125</SecondInk>
       </Front>
       <Back>
           <FirstInk>823</FirstInk>
           <SecondInk>123</SecondInk>
       </Back>
</Ink1>


How to change the corresponding property to reflect the changes.  Any
idea?



-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.

Reply via email to