Try our conversational search powered by Generative AI!

Configuration - <episerver.dataStore> Section

Product version:

EPiServer CMS 6 R2

Document version:

1.0

Document last saved:

<episerver.dataStore>

<episerver.dataStore>
   <dataStore autoResolveTypes="bool"
              defaultProvider="string"
              deleteAllOperationTimeout="int" >
      <cache defaultProvider="string">
         <providers>
            <add description="string"
                 name="string"
                 type="string" />
            ...
         </providers>
      </cache>
      <providers>
         <add description="string"
              name="string"
              type="string" />
         ...
      </providers>
   </dataStore>
</episerver.dataStore>

 

<dataStore> Element Attributes

NameDefault ValueDescription
autoResolveTypes

true

Defines if type resolution should be done automatically by the Dynamic Data Store.

defaultProvider

 

The name of the default provider.

A provider with the specified name must exist in the providers collection.

deleteAllOperationTimeout

600

Connection timeout for the "delete all" functionality.

 

<cache> Element Attributes

NameDefault ValueDescription
defaultProvider  

The name of the default cache provider.

A provider with the specified name must exist in the cache/providers collection.

 

<cache>/<providers>/<add> Element Attributes

NameDefault ValueDescription
autoResolveTypes

true

Defines if type resolution should be done automatically by the Dynamic Data Store.

defaultProvider

 

The name of the default provider.

A provider with the specified name must exist in the providers collection.

 

<providers>/<add> Element Attributes

NameDefault ValueDescription

description

 

Short text describing in the provider.

name

 

Unique name for this provider.

type

 

The full name of the data store provider class.

The referenced class must inherit from EPiServer.Data.Dynamic.Providers.DataStoreProvider.