我有一些复杂的类,其中许多都有一个类作为属性。我试图用 th ROWLEX 属性标记来标记类文件,但是当多个类具有相同的属性名称时,Rowlex 提取器会出错。
我制作了一组非常简单的 Leg、Animal、Table 类。桌子和动物都有腿,这是一组腿......
错误消息是: http: //nc3a.nato.int/10/16/ZooOntology#Legs被分配给多个类型。
进口 NC3A.SI.Rowlex
http://nc3a.nato.int/10/16/ZooOntology")>
命名空间命名空间1
<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
结束命名空间