IEntityCoreWriteXml Method (String, XmlDocument, XmlNode) | 
 
            Converts the data inside inside this entity into XML, recursively.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntaxvoid WriteXml(
	string rootNodeName,
	XmlDocument parentDocument,
	out XmlNode entityNode
)
Sub WriteXml ( 
	rootNodeName As String,
	parentDocument As XmlDocument,
	<OutAttribute> ByRef entityNode As XmlNode
)
Parameters
- rootNodeName
 - Type: SystemString
name of root element to use when building a complete XML representation of this entity. - parentDocument
 - Type: System.XmlXmlDocument
the XmlDocument which will contain the node this method will create. This document is required
            to create the new node object - entityNode
 - Type: System.XmlXmlNode
The XmlNode representing this complete entity object, including containing data. 
See Also