I have simple bussiness class in c# and want to create a RDF document. Most of the datatype that i specify I can get OntologyExtractor to create owl schema. How would I handle DataTime? (nullable) and System.Guid datatypes e.g.
[RdfSerializable(Ontology = "http://ceoc/", HasResourceUri = true)]
public abstract class IIncident
{
[ResourceUri]
public abstract string Details { get; set; }
[RdfProperty(true)]
public abstract DateTime? log { get; set; }
[RdfProperty(true)]
public abstract Guid intellegience { get; set; }
}