Open a new dynamic store
Namespace: BrightstarDB.Dynamic
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public DynamicStore OpenStore(
string storeName,
Dictionary<string, string> namespaceMappings = null,
Nullable<bool> optimisticLockingEnabled = null
) |
Visual Basic |
---|
Public Function OpenStore (
storeName As String,
Optional namespaceMappings As Dictionary(Of String, String) = Nothing,
Optional optimisticLockingEnabled As Nullable(Of Boolean) = Nothing
) As DynamicStore |
Visual C++ |
---|
public:
DynamicStore^ OpenStore(
String^ storeName,
Dictionary<String^, String^>^ namespaceMappings = nullptr,
Nullable<bool> optimisticLockingEnabled = nullptr
) |
F# |
---|
member OpenStore :
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 store to open
- 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:
DynamicStoreA new DynamicStore
See Also