Class EPiServerDynamicDataStore
Class to read, write and search data in a store
Implements
Inherited Members
Namespace: EPiServer.Data.Dynamic.Internal
Assembly: EPiServer.Data.dll
Version: 12.0.3Syntax
public class EPiServerDynamicDataStore : DynamicDataStore, IDisposable
Constructors
EPiServerDynamicDataStore(StoreDefinition, DataStoreProvider)
Declaration
public EPiServerDynamicDataStore(StoreDefinition storeDefinition, DataStoreProvider dataStoreProvider)
Parameters
Type | Name | Description |
---|---|---|
Store |
storeDefinition | |
Data |
dataStoreProvider |
Properties
DataStoreProvider
The store's Data
Declaration
public override DataStoreProvider DataStoreProvider { get; set; }
Property Value
Type | Description |
---|---|
Data |
Overrides
Name
The name of the current store
Declaration
public override string Name { get; }
Property Value
Type | Description |
---|---|
System. |
Overrides
StoreDefinition
The Store
Declaration
public override StoreDefinition StoreDefinition { get; }
Property Value
Type | Description |
---|---|
Store |
Overrides
Methods
Delete(Identity)
Delete an item from the store
Declaration
public override void Delete(Identity id)
Parameters
Overrides
Delete(Object)
Delete an item from the store
Declaration
public override void Delete(object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The object to delete from the store.
The Identity of the item to delete must be able to be derived from |
Overrides
Exceptions
Type | Condition |
---|---|
System. |
Thrown if the Identity of |
DeleteAll()
Delete all items in the store
Declaration
public override void DeleteAll()
Overrides
Find(IDictionary<String, Object>)
Find objects of from the store that match the conditions and return them as as the same .NET class they were saved as
Declaration
public override IEnumerable<object> Find(IDictionary<string, object> parameters)
Parameters
Type | Name | Description |
---|---|---|
System. |
parameters | An dictionary containing property names and values to use when finding objects |
Returns
Type | Description |
---|---|
System. |
Enumeration of System. |
Overrides
Find(String, Object)
Find objects of from the store that match the condition and return them as the same .NET class they were saved as
Declaration
public override IEnumerable<object> Find(string propertyName, object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
propertyName | The name of the property to use when finding objects |
System. |
value | The value of the property to match to |
Returns
Type | Description |
---|---|
System. |
Enumeration of System. |
Overrides
Find<TResult>(IDictionary<String, Object>)
Find objects of from the store that match the conditions and return them as as TResult instances
Declaration
public override IEnumerable<TResult> Find<TResult>(IDictionary<string, object> parameters)
Parameters
Type | Name | Description |
---|---|---|
System. |
parameters | An dictionary containing property names and values to use when finding objects |
Returns
Type | Description |
---|---|
System. |
Enumeration of TResult |
Type Parameters
Name | Description |
---|---|
TResult | The System. |
Overrides
Find<TResult>(String, Object)
Find objects of from the store that match the condition and return them as TResult instances
Declaration
public override IEnumerable<TResult> Find<TResult>(string propertyName, object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
propertyName | The name of the property to use when finding objects |
System. |
value | The value of the property to match to |
Returns
Type | Description |
---|---|
System. |
Enumeration of TResult |
Type Parameters
Name | Description |
---|---|
TResult | The System. |
Overrides
FindAsPropertyBag(IDictionary<String, Object>)
Find objects of from the store that match the conditions and return them as as Property
Declaration
public override IEnumerable<PropertyBag> FindAsPropertyBag(IDictionary<string, object> parameters)
Parameters
Type | Name | Description |
---|---|---|
System. |
parameters | An dictionary containing property names and values to use when finding objects |
Returns
Type | Description |
---|---|
System. |
Enumeration of Property |
Overrides
FindAsPropertyBag(String, Object)
Find objects of from the store that match the condition and return them as Property
Declaration
public override IEnumerable<PropertyBag> FindAsPropertyBag(string propertyName, object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
propertyName | The name of the property to use when finding objects |
System. |
value | The value of the property to match to |
Returns
Type | Description |
---|---|
System. |
Enumeration of Property |
Overrides
Items()
An ordered queryable to allow Linq operations to be performed against the store
Declaration
public override IOrderedQueryable<object> Items()
Returns
Type | Description |
---|---|
System. |
Overrides
Items<TResult>()
An ordered queryable to allow Linq operations to be performed against the store
Declaration
public override IOrderedQueryable<TResult> Items<TResult>()
Returns
Type | Description |
---|---|
System. |
An System. |
Type Parameters
Name | Description |
---|---|
TResult | The System. |
Overrides
ItemsAsPropertyBag()
An ordered queryable to allow Linq operations to be performed against the store
Declaration
public override IOrderedQueryable<PropertyBag> ItemsAsPropertyBag()
Returns
Type | Description |
---|---|
System. |
An System. |
Overrides
Load(Identity)
Load an instance of an object from the store as the same .NET class it was saved as
Declaration
public override object Load(Identity id)
Parameters
Returns
Type | Description |
---|---|
System. |
The native object stored in the store.
If the item was originally saved in a Property |
Overrides
Load<TResult>(Identity)
Load an instance of an object from the store into a TResult
Declaration
public override TResult Load<TResult>(Identity id)
Parameters
Returns
Type | Description |
---|---|
TResult | An instance of TResult |
Type Parameters
Name | Description |
---|---|
TResult | The System. |
Overrides
LoadAll()
Loads all objects from the store as the same .NET class they were saved as
Declaration
public override IEnumerable<object> LoadAll()
Returns
Type | Description |
---|---|
System. |
Enumeration of System. |
Overrides
LoadAll<TResult>()
Loads all objects from the store as TResult instances
Declaration
public override IEnumerable<TResult> LoadAll<TResult>()
Returns
Type | Description |
---|---|
System. |
Enumeration of TResult |
Type Parameters
Name | Description |
---|---|
TResult | The System. |
Overrides
LoadAllAsPropertyBag()
Loads all objects from the store as Property
Declaration
public override IEnumerable<PropertyBag> LoadAllAsPropertyBag()
Returns
Type | Description |
---|---|
System. |
Enumeration of Property |
Overrides
LoadAsPropertyBag(Identity)
Load an instance of an object from the store into a Property
Declaration
public override PropertyBag LoadAsPropertyBag(Identity id)
Parameters
Type | Name | Description |
---|---|---|
Identity | id | The identity of the item to load |
Returns
Type | Description |
---|---|
Property |
An instance of PropertyBag or null if the item was not found in the store |
Overrides
Refresh()
Refresh any cached properties from their source
Declaration
public override void Refresh()
Overrides
Save(Object)
Save value
in the store
Declaration
public override Identity Save(object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The object to save |
Returns
Type | Description |
---|---|
Identity | The identity of the saved object |
Overrides
Save(Object, TypeToStoreMapper)
Save value
in the store
Declaration
public override Identity Save(object value, TypeToStoreMapper typeToStoreMapper)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The object to save |
Type |
typeToStoreMapper | A delegate of type Type |
Returns
Type | Description |
---|---|
Identity | The identity of the saved object |
Overrides
Save(Object, Identity)
Save value
in the store
Declaration
public override Identity Save(object value, Identity id)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The object to save |
Identity | id | The id saved the object under |
Returns
Type | Description |
---|---|
Identity | The identity of the saved object |
Overrides
Save(Object, Identity, TypeToStoreMapper)
Save value
in the store
Declaration
public override Identity Save(object value, Identity id, TypeToStoreMapper typeToStoreMapper)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The object to save |
Identity | id | The id saved the object under |
Type |
typeToStoreMapper | A delegate of type Type |
Returns
Type | Description |
---|---|
Identity | The identity of the saved object |
Overrides
Update<TStore>()
Declaration
public override IUpdateQueryable<TStore> Update<TStore>()
Returns
Type | Description |
---|---|
IUpdate |
Type Parameters
Name | Description |
---|---|
TStore |