Creates a new BrightstarDB store

Namespace: BrightstarDB.Dynamic
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public DynamicStore CreateStore(
	string storeName,
	Dictionary<string, string> namespaceMappings = null,
	Nullable<bool> optimisticLockingEnabled = null
)
Visual Basic
Public Function CreateStore ( 
	storeName As String,
	Optional namespaceMappings As Dictionary(Of String, String) = Nothing,
	Optional optimisticLockingEnabled As Nullable(Of Boolean) = Nothing
) As DynamicStore
Visual C++
public:
DynamicStore^ CreateStore(
	String^ storeName, 
	Dictionary<String^, String^>^ namespaceMappings = nullptr, 
	Nullable<bool> optimisticLockingEnabled = nullptr
)
F#
member CreateStore : 
        storeName : string * 
        ?namespaceMappings : Dictionary<string, string> * 
        ?optimisticLockingEnabled : Nullable<bool> 
(* Defaults:
        let _namespaceMappings = defaultArg namespaceMappings null
        let _optimisticLockingEnabled = defaultArg optimisticLockingEnabled null
*)
-> DynamicStore 

Parameters

storeName
Type: System..::..String
The name of the new store to create.
namespaceMappings (Optional)
Type: System.Collections.Generic..::..Dictionary<(Of <(<'String, String>)>)>
RDF namespace mappings
optimisticLockingEnabled (Optional)
Type: System..::..Nullable<(Of <(<'Boolean>)>)>
Indicates if this context should enforce optimistic locking

Return Value

Type: DynamicStore
A DynamicStore

See Also