Hello all -

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 
"Castle Project Users" 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/castle-project-users?hl=en.

Reply via email to