1

我有一些复杂的类,其中许多都有一个类作为属性。我试图用 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

结束命名空间

4

1 回答 1

0

ROWLEX2.1 解决了这个问题,您可以从http://rowlex.nc3a.nato.int下载。有关更详细的解释和示例代码,请查看这个类似的 StackOverflow 问题

于 2010-02-05T09:58:48.293 回答