Method | Description | |
---|---|---|
AssertDocumentStoreErrors ( this documentStore, bool areDocumentStoreErrorsTreatedAsWarnings = false ) : void |
Asserts if the document store has any errors.
|
|
InitializeWithDefaultsAsync ( this documentStore, IEnumerable |
Initialized this instance but with some optional settings, like seed data and indexes.
|
Method | Description | |
---|---|---|
CreateIndexes ( ICollection |
||
CreateSeedDataAsync ( IEnumerable |
||
ReportOnInitializedStatistics ( IDocumentStore documentStore ) : void | ||
WaitForStaleIndexesToComplete ( this documentStore ) : void |
public static AssertDocumentStoreErrors ( this documentStore, bool areDocumentStoreErrorsTreatedAsWarnings = false ) : void | ||
documentStore | this | The Raven document store. |
areDocumentStoreErrorsTreatedAsWarnings | bool | Optional: If there are any server errors, do we downgrade them as warnings or keep them as errors, which stops further processing of the document store. |
return | void |
public static InitializeWithDefaultsAsync ( this documentStore, IEnumerable |
||
documentStore | this | The Raven document store. |
seedData | IEnumerable |
Optional: A collection of data which will be 'seeded' into the new document store. |
indexesToExecute | ICollection |
Optional: Any index(es) which should be executed during initialization. They need to be assignable from an AbstractIndexCreationTask. |
assembliesToScanForIndexes | ICollection |
Optional: The assembly where the index(es) are located. |
areDocumentStoreErrorsTreatedAsWarnings | bool | Optional: If there are any server errors, do we downgrade them as warnings or keep them as errors, which stops further processing of the document store. |
return | Task |