If all you need is just Dynamic Data Store..
We had recently task to make a module data store agnostic. This means that it shouldn’t be a problem to switch from Dynamic Data Store to some other storage implementation. Back and forth. No big deal.
As we currently are developing in our sandbox and making some prototypes only, idea was to bring DDS in our sandbox. We didn’t wanted to deal with all that complexity of EPiServer for now just to be able to use DDS for out testing purposes.
Things to happen, first we need to bring in section from web.config file.
And then we need to copy section and its content as well (for testing purposes we disabled caching):
<dataStore defaultProvider="EPiServerSQLServerDataStoreProvider">
<providers>
<add name="EPiServerSQLServerDataStoreProvider" description="SQL Server implementation of Data Store" type="EPiServer.Data.Dynamic.Providers.SqlServerDataStoreProvider, EPiServer.Data" connectionStringName="EPiServerDB"/>
</providers>
<cache defaultProvider="nullCacheProvider">
<providers>
<add name="httpCacheProvider" description="Http Cache implementation for DataStore" type="EPiServer.Data.Cache.HttpRuntimeCacheProvider,EPiServer.Data.Cache"/>
<add name="nullCacheProvider" description="Null Cache implementation for DataStore" type="EPiServer.Data.Cache.NullCacheProvider,EPiServer.Data"/>
</providers>
</cache>
</dataStore>
</episerver.dataStore>
Remember to add connection string in <connectionStrings> section as well.
That’s almost it.
We would need to reference EPiServer.CMS.Core and EPiServer.Framework NuGet packages to get EPiServer.Data.Dynamic namespace in codebase.
Next thing is to initialize store to get a working copy. After sniffing around EPiServer source code we found that particular initialization module is doing required stuff.
And particularly this method:
private static void InitializeDynamicDataStore()
{
...
DynamicDataStoreFactory.Instance = (DynamicDataStoreFactory) new EPiServerDynamicDataStoreFactory();
...
}
And looking at TypeExtensions that provide convenient way to get store instance:
{
return DynamicDataStoreFactory.Instance.GetStore(type) ?? DynamicDataStoreFactory.Instance.CreateStore(type);
}
We found a way if we set store instance property to EPiServerDynamicDataStoreFactory. instance – everything works correctly and you are ready to go with DDS support in your very disconnected from the EPiServer sandbox project.
But to make it more easier for testing, imagine that it would classical requirement to be able to mock store and test against some simpler or even mocked instance of the DynamicDataStore type. We adjusted our data store facade to be able to accept various kinds of factories which would make instances of data store as required.
public OurEPiServerStore()
{
if(DynamicDataStoreFactory.Instance == null)
{
this.storeFactory = DynamicDataStoreFactory.Instance = new EPiServerDynamicDataStoreFactory();
}
this.storeFactory = DynamicDataStoreFactory.Instance;
}
public OurEPiServerStore(DynamicDataStoreFactory factory)
{
this.storeFactory = factory;
}
And then it’s just more easier to unit test our store behaviour and surrounding environment with something like this:
var storeMock = new Mock<DynamicDataStore>();
factoryMock.Setup(f => f.GetStore(typeof(EmailModel))).Returns(storeMock.Object);
var store = new NewsletterStore<ModelType>(factoryMock.Object);
That’s it! Hope this helps.
Hi Valdis,
Thanks for putting together this article. I'm trying to replicate what you have achieved but keep getting an "StructureMap Exception Code: 202
No Default Instance defined for PluginFamily EPiServer.Data.IDatabaseHandler" exception message. Was this something that you experienced? Have I missed something from my configuration perhaps?
Thanks
Joel
This was used in CMS6. I'll check what's the case in v7. StructureMap needs to be initialized beforehand using any base classes as most of the interfaces are retrieved via ServiceLocator.
Try this code:
().Use(factory.CreateDefaultHandler));
element for v7 is optional. If you still add it - be sure to clear providers list before adding - otherwise you will get "Key has already been added" type of exception.
var container = new Container();
var factory = new SqlDatabaseFactory();
container.Configure(ce => ce.For
ServiceLocator.SetLocator(new StructureMapServiceLocator(container));
DataInitialization.InitializeFromCode(container, factory, null);
var store = typeof(SampleModel).GetStore();
NB!
Hi Valdis,
I am try to use DDS in console application for EPiServer CMS 7, I used above code for initialization .
In my App.config.
The exception I am getting is:
exception Message:
Activation error occurred while trying to get instance of type IDatabaseHandler, key ""
InnerException :
{"StructureMap Exception Code: 207\nInternal exception while creating Instance 'c83caeb3-0d4f-4775-853b-8b7ae906265a' of PluginType EPiServer.Data.IDatabaseHandler, EPiServer.Data, Version=7.0.859.24, Culture=neutral, PublicKeyToken=8fe83dea738b45b7}
StackTrace:
at StructureMap.Pipeline.LambdaInstance`1.InstanceBuild(Type pluginType, BuildSession session)
at StructureMap.Pipeline.Instance.createRawObject(Type pluginType, BuildSession session)
at StructureMap.Pipeline.Instance.Build(Type pluginType, BuildSession session)
at StructureMap.Pipeline.ObjectBuilder.ConstructNew(Type pluginType, Instance instance, BuildSession session)
at StructureMap.Pipeline.ObjectBuilder.Resolve(Type pluginType, Instance instance, BuildSession session)
at StructureMap.BuildSession.CreateInstance(Type pluginType, Instance instance)
at StructureMap.BuildSession.CreateInstance(Type pluginType)
at StructureMap.Container.GetInstance(Type pluginType)
at EPiServer.ServiceLocation.StructureMapServiceLocator.DoGetInstance(Type serviceType, String key)
at EPiServer.ServiceLocation.ServiceLocatorImplBase.GetInstance(Type serviceType, String key)
at EPiServer.ServiceLocation.ServiceLocatorImplBase.GetInstance[TService]()
at EPiServer.Data.Providers.SqlDatabaseFactory.get_CurrentHandler()
at EPiServer.Data.DataInitialization.InitializeFromCode(IContainer container, IDatabaseFactory dbHandlerFactory, CacheProvider cacheProvider)
Also where I have to set connection string name?
Thanks,
Chirag
Chirag, sorry for delayed answer. We just came across the same issue. Just check exception's inner exception. If it's complaining about "Entry point is not found", double check your app.config file. You may missing redirect to proper structuremap assembly used in project.