Creates a new store.
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public IDataObjectStore CreateStore(
string storeName,
Dictionary<string, string> namespaceMappings = null,
Nullable<bool> optimisticLockingEnabled = null,
Nullable<PersistenceType> persistenceType = null,
string updateGraph = null,
string versionTrackingGraph = null
) |
Visual Basic |
---|
Public Function CreateStore (
storeName As String,
Optional namespaceMappings As Dictionary(Of String, String) = Nothing,
Optional optimisticLockingEnabled As Nullable(Of Boolean) = Nothing,
Optional persistenceType As Nullable(Of PersistenceType) = Nothing,
Optional updateGraph As String = Nothing,
Optional versionTrackingGraph As String = Nothing
) As IDataObjectStore |
Visual C++ |
---|
public:
virtual IDataObjectStore^ CreateStore(
String^ storeName,
Dictionary<String^, String^>^ namespaceMappings = nullptr,
Nullable<bool> optimisticLockingEnabled = nullptr,
Nullable<PersistenceType> persistenceType = nullptr,
String^ updateGraph = nullptr,
String^ versionTrackingGraph = nullptr
) sealed |
F# |
---|
abstract CreateStore :
storeName : string *
?namespaceMappings : Dictionary<string, string> *
?optimisticLockingEnabled : Nullable<bool> *
?persistenceType : Nullable<PersistenceType> *
?updateGraph : string *
?versionTrackingGraph : string
(* Defaults:
let _namespaceMappings = defaultArg namespaceMappings null
let _optimisticLockingEnabled = defaultArg optimisticLockingEnabled null
let _persistenceType = defaultArg persistenceType null
let _updateGraph = defaultArg updateGraph null
let _versionTrackingGraph = defaultArg versionTrackingGraph null
*)
-> IDataObjectStore
override CreateStore :
storeName : string *
?namespaceMappings : Dictionary<string, string> *
?optimisticLockingEnabled : Nullable<bool> *
?persistenceType : Nullable<PersistenceType> *
?updateGraph : string *
?versionTrackingGraph : string
(* Defaults:
let _namespaceMappings = defaultArg namespaceMappings null
let _optimisticLockingEnabled = defaultArg optimisticLockingEnabled null
let _persistenceType = defaultArg persistenceType null
let _updateGraph = defaultArg updateGraph null
let _versionTrackingGraph = defaultArg versionTrackingGraph null
*)
-> IDataObjectStore |
Parameters
- storeName
- Type: System..::..String
Name of the store to create.
- namespaceMappings (Optional)
- Type: System.Collections.Generic..::..Dictionary<(Of <(<'String, String>)>)>
Namespace mappings that can be used by CURIE's.
- optimisticLockingEnabled (Optional)
- Type: System..::..Nullable<(Of <(<'Boolean>)>)>
Optional parameter to override the default optimistic locking setting for the context
- persistenceType (Optional)
- Type: System..::..Nullable<(Of <(<'PersistenceType>)>)>
The type of persistence to use in the newly created store. If not specified, defaults to the value specified in the application configuration file or AppendOnly
- updateGraph (Optional)
- Type: System..::..String
OPTIONAL: The URI identifier of the graph to be updated with any new triples created by operations on the store. If
not defined, the default graph in the store will be updated.
- versionTrackingGraph (Optional)
- Type: System..::..String
OPTIONAL: The URI identifier of the graph that contains version number statements for data objects.
If not defined, the updateGraph will be used.
Return Value
Type:
IDataObjectStoreA new store instance.
Implements
IDataObjectContext..::..CreateStore(String, Dictionary<(Of <<'(String, String>)>>), Nullable<(Of <<'(Boolean>)>>), Nullable<(Of <<'(PersistenceType>)>>), String, String)
See Also