I am using LLBL Pro in an offline application(without SQL server connection)
the schema is each customers have several OverseasNetworks.
So the generated XML file is like:
<Entity CustId="Customer1" Assembly="..." Type="DAL.EntityClasses.CustomerEntity">
.......
<EntityCollectionReference PropertyName="OverseasNetwork">
<OverseasNetwork Assembly="" Type="">
<Entities>
<Entity Id="115..
......
</OverseasNetwork>
</EntityCollectionReference>
</Entity>
When I read the xml using readXML method, exception is thrown because there is no
database connection.
But if I delete these keypersonnel nodes in the xml, the reading is ok.
How can I avoid this database connection? because all the data of keypersonnel are
inside of the xml file. so I think it should have a way to avoid database connection, right?
.
Thanks in advance