1
我有一些複雜的類,其中許多類都有一個類作爲屬性。我試圖用ROWLEX屬性標記標記類文件,但是當多個類具有相同的屬性名時,Rowlex提取器會給出錯誤。ROWLEX:具有相同屬性名稱的類不起作用:ROWLEX
我已經制作了一套非常簡單的類腿,動物,表。兩個表&動物腿都是腿的陣列....
錯誤消息是:http://nc3a.nato.int/10/16/ZooOntology#Legs被分配到多個類型。
進口NC3A.SI.Rowlex
http://nc3a.nato.int/10/16/ZooOntology「)>
命名空間Namespace1
<RdfSerializable(Ontology:="http://nc3a.nato.int/10/16/ZooOntology", HasResourceUri:=False)> _
Public Class Leg
End Class
<RdfSerializable(Ontology:="http://nc3a.nato.int/10/16/ZooOntology", HasResourceUri:=False)> _
Public Class House
<RdfProperty(False)> _
Public readonly Property Legs() As Leg()
Get
Return Nothing
End Get
End Property
End Class
<RdfSerializable(Ontology:="http://nc3a.nato.int/10/16/ZooOntology", HasResourceUri:=False)> _
Public Class Table
<RdfProperty(False)> _
Public ReadOnly Property Legs() As Leg()
Get
Return Nothing
End Get
End Property
End Class
結束命名空間