How to change the base namespace of my store programmatically?

Hello,

I am using C# as my Programming Language with dotNetRDF to create and work with my docker stardog database.
I came to a problem which contains the problem, that i create a Store via the StardogServer with the StardogDiskTemplate.
Code:
var componentStoreTemplate = (StardogDiskTemplate) server.GetDefaultTemplate(storeName);
{
try
{
server.CreateStore(componentStoreTemplate);
}
catch (Exception e)
{
Console.WriteLine(e);
}
When I ceate the database then there are namespaces defined which i want to change before creating the store.
The default namespace: http://api.stardog.com/
In the tutorial the namespace is changed once the database is created
So now my question: How can i change the value of this namespace?

Thank you for your fast answers.
Sincerely
Marco

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.