IEntityCollectionReadXml Method (String) | 
 
            Will fill the entity collection and its containing members (recursively) with the data stored in the XmlNode passed in. The XmlNode has to
            be filled with Xml in the format written by IEntityCollection.WriteXml() and the Xml has to be compatible with the structure of this entity collection.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntaxvoid ReadXml(
	string xmlData
)
Sub ReadXml ( 
	xmlData As String
)
Parameters
- xmlData
 - Type: SystemString
string with Xml data which should be read into this entity collection and its members. This string has to be in the
            correct format and should be loadable into a new XmlDocument without problems 
See Also