Hello, I created a bunch of classes using ROWLEX and had them serialized to RDF using
RdfDocument rdfDocument = Rdfizer.Serialize(ontology);
Now i would like to deserialize it (similar to how XmlSerializer.Deserialize() works) so that I could have the data in the ontology populated in my object
I would like to do something like this:
RdfSerializer serializer = new RdfSeriailzer(typeof(MyOntology));
MyOntology ontology = (MyOntology)serializer.Deserize(fileStream);
Could anyone please tell me how I can deserialize an OWL document back to my object using ROWLEX?
Thanks