I\'ve got a requirement to pass parameters as Xml to my stored procedures.
I have a WCF service in the middle tier that makes calls to my data layer which in turn fo
I would put the xml construction code inside the domain object. That way, you can just call obj.GetXML() from Web Service or data layer.