Click or drag to resize
EntityBase2Xml2Entity Method (XmlNode, DictionaryGuid, IEntityCore, ListNodeEntityReference)
Performs the actual conversion from Xml to entity data.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
protected override void Xml2Entity(
	XmlNode node,
	Dictionary<Guid, IEntityCore> processedObjectIDs,
	List<NodeEntityReference> nodeEntityReferences
)

Parameters

node
Type: System.XmlXmlNode
current node which points to an entity node.
processedObjectIDs
Type: System.Collections.GenericDictionaryGuid, IEntityCore
ObjectID's of all entities instantiated
nodeEntityReferences
Type: System.Collections.GenericListNodeEntityReference
Arraylist with all the references to entity objects we probably do not yet have instantiated. This list is traversed after the xml tree has been processed. (not done by this routine, but by the caller)
See Also