EntityCoreTFieldsXml2Entity Method (XmlReader, 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.4.0.0 (5.4.0)
Syntax protected virtual void Xml2Entity(
XmlReader reader,
Dictionary<Guid, IEntityCore> processedObjectIDs,
List<NodeEntityReference> nodeEntityReferences
)
Protected Overridable Sub Xml2Entity (
reader As XmlReader,
processedObjectIDs As Dictionary(Of Guid, IEntityCore),
nodeEntityReferences As List(Of NodeEntityReference)
)
Parameters
- reader
- Type: System.XmlXmlReader
The reader to read the xml from. - 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 method, but by the caller)
See Also