EntityCore<TFields>.Xml2Entity Method (XmlNode, Dictionary<Guid, IEntityCore>, List<NodeEntityReference>) |
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.5.0.0 (5.5.18.1019)
Syntaxprotected abstract void Xml2Entity(
XmlNode node,
Dictionary<Guid, IEntityCore> processedObjectIDs,
List<NodeEntityReference> nodeEntityReferences
)
Protected MustOverride Sub Xml2Entity (
node As XmlNode,
processedObjectIDs As Dictionary(Of Guid, IEntityCore),
nodeEntityReferences As List(Of NodeEntityReference)
)
Parameters
- node
- Type: System.Xml.XmlNode
current node which points to an entity node. - processedObjectIDs
- Type: System.Collections.Generic.Dictionary<Guid, IEntityCore>
ObjectID's of all entities instantiated - nodeEntityReferences
- Type: System.Collections.Generic.List<NodeEntityReference>
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 method, but by the caller)
See Also