Create a new store with a specific persistence type for the main store indexes
            
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# | 
|---|
void CreateStore(
	string storeName,
	PersistenceType persistenceType
)  | 
| Visual Basic | 
|---|
Sub CreateStore ( 
	storeName As String,
	persistenceType As PersistenceType
)  | 
| Visual C++ | 
|---|
void CreateStore(
	String^ storeName, 
	PersistenceType persistenceType
)  | 
| F# | 
|---|
abstract CreateStore : 
        storeName : string * 
        persistenceType : PersistenceType -> unit 
 | 
Parameters
- storeName
 - Type: System..::..String
The name of the store to be created 
- persistenceType
 - Type: PersistenceType
The type of persistence to use for the main store indexes 
See Also