如何在 C# 中的 dotnetrdf 库中获取空白节点 ID

发布于 2024-12-06 11:06:12 字数 549 浏览 4 评论 0原文

我使用 dotNetRDF 创建一个像这样的空白节点

BlankNode ddd = k.CreateBlankNode();

,然后在 n3 文件,但是当我打开 n3 文件由 notpad 它显示这个空白节点,如 []。 如何自己创建一个blankNode ID然后删除它?

使用 dotenetrdf 库删除节点或三元组?

I create a blankNode like this code using dotNetRDF

BlankNode ddd = k.CreateBlankNode();

and then assert it in a n3 file but when I open the n3 file by notpad it show this blankNode like [].
How can I create a blankNode ID by myself to then delete this?

delete a node or triple using dotenetrdf librery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2024-12-13 11:06:12

如果您确实需要显式 ID,则必须使用以下形式的方法:

IBlankNode bnode = g.CreateBlankNode("id");

请注意,这并不能保证库不会将其转换为 N3 输出中的匿名语法 []这只是语法压缩。如果您确实想避免这种语法压缩,您可以手动创建和配置 Notation3Writer 并将 CompressionLevel 属性设置为较低(任何 <5 的值都应停止使用 < code>[])

否则,如果您想删除匿名空白节点,您需要制定一些选择标准,以便您找到相关节点,然后根据该节点撤回三元组

If you really need an explicit ID then you must use the following form of the method:

IBlankNode bnode = g.CreateBlankNode("id");

Note that this does not guarantee that the library won't convert it to the anonymous syntax [] in the N3 output as this is simply a syntax compression. If you really want to avoid this syntax compression you can create and configure a Notation3Writer manually and set the CompressionLevel property to be low (anything < 5 should stop the use of [])

Otherwise if you want to delete an anonynmous blank node this you need to formulate some selection criteria that will allow you to locate the relevant node and then retract triples based upon that

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文