Creates a new data file for the specified store that contains only the data required for the current state.
            
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# | 
|---|
public IJobInfo ConsolidateStore(
	string store,
	string label = null
)  | 
| Visual Basic | 
|---|
Public Function ConsolidateStore ( 
	store As String,
	Optional label As String = Nothing
) As IJobInfo  | 
| Visual C++ | 
|---|
public:
virtual IJobInfo^ ConsolidateStore(
	String^ store, 
	String^ label = nullptr
) sealed  | 
| F# | 
|---|
abstract ConsolidateStore : 
        store : string * 
        ?label : string 
(* Defaults:
        let _label = defaultArg label null
*)
-> IJobInfo 
override ConsolidateStore : 
        store : string * 
        ?label : string 
(* Defaults:
        let _label = defaultArg label null
*)
-> IJobInfo  | 
Parameters
- store
 - Type: System..::..String
Store name 
- label (Optional)
 - Type: System..::..String
Optional user-friendly label for the job. 
Return Value
Type: 
IJobInfoAn IJobInfo instance
Implements
IBrightstarService..::..ConsolidateStore(String, String)
See Also