InMemoryDataStore Constructors
Stores persistent objects in memory. Intended for a testing environment and not for production purposes or large data sets.Name | Parameters | Description |
---|---|---|
InMemoryDataStore() | none | Initializes a new instance of the InMemoryDataStore class and sets the IDataStore.AutoCreateOption property to AutoCreateOption.DatabaseAndSchema. |
InMemoryDataStore(AutoCreateOption, Boolean) | autoCreateOption, caseSensitive | Initializes a new instance of the InMemoryDataStore class with the specified settings. |
InMemoryDataStore(AutoCreateOption) | autoCreateOption | Initializes a new instance of the InMemoryDataStore class with the specified settings. |
InMemoryDataStore(InMemoryDataStore, AutoCreateOption) | originalStore, autoCreateOption | Initializes a new instance of the InMemoryDataStore class using the underlying storage of a specific InMemoryDataStore. |
InMemoryDataStore(DataSet, AutoCreateOption, Boolean) | data, autoCreateOption, caseSensitive | Obsolete. Initializes a new instance of the InMemoryDataStore class. |
InMemoryDataStore(DataSet, AutoCreateOption) | data, autoCreateOption |
Obsolete. This constructor is obsolete. |
See Also