Questions tagged [rowlex]

ROWLEX is a .NET library and toolkit built to create and browse RDF documents easily.

ROWLEX is a .NET library and toolkit built to create and browse RDF documents easily. It abstracts away the level of RDF triples and elevates the level of the programming work to OWL classes and properties.

36 questions
0
votes
1 answer

Ontology in Rowlex

I am trying to use Rowlex for the opencalais ontology found here http://www.opencalais.com/files/owl.opencalais-4.3a.xml I have tried the zoo sample ontology and i am wondering how i can call the opencalais ontology fields. Thank you very very much
Lilz
  • 4,013
  • 13
  • 61
  • 95
0
votes
1 answer

Problem with Rowlex- dateTime retrieving

I've encountered a problem in Rowlex recently. It is related to datetime retrieving. In my RDF file, I have two instances like this:
Ehsan
  • 561
  • 1
  • 6
  • 21
0
votes
1 answer

How to attribute an array to custom type in ROWLEX

I have some custom type: [RdfSerializable] public class Item { [RdfProperty(true)] public string Name { get; set; } } and some other type that has array of Item: [RdfSerializable] public class Container { // ... some code // if…
The_Ghost
  • 2,070
  • 15
  • 26
0
votes
1 answer

Doubled tags for one property in ROWLEX

I have this code: [RdfSerializable( HasResourceUri=false )] public class Item { [RdfProperty(true)] public string MyProp; } [RdfSerializable] public class AllItems { [RdfProperty(true)] public string mTitle; …
The_Ghost
  • 2,070
  • 15
  • 26
0
votes
1 answer

In ROWLEX is there a way to remove "rdf:datatype" from serialized object?

In ROWLEX is it possible to remove "rdf:datatype" attribute of each property and/or use common RDF Schema instead? Example: My news
The_Ghost
  • 2,070
  • 15
  • 26
0
votes
1 answer

Removing multi-value properties from RDF by Rowlex

I'm trying to remove properties with multi values, from RDF and it seems about this RDF, I should make below code for removing includeResource:
Ehsan
  • 561
  • 1
  • 6
  • 21
1 2
3