Hi,
I want to create an xml document that has multiple instance of a type, not sure what's the proper way to do this:
<farm>
<horses>
<horse name="jo"></horse>
<horse name="bill"></horse>
</horses>
</farm>
or should I skip the tag and just do this:
<farm>
<horse name="jo"></horse>
<horse name="bill"></horse>
</farm>
which way is correct?
Thanks