A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More

smithsson68@gmail.com
May 10, 2010
  5600
(0 votes)

Data Container Indifference in the Dynamic Data Store

The Dynamic Data Store (DDS) that shipped with EPiServer CMS 6 has a feature unofficially called “Data Container Indifference”. This is a feature that some people are going to love, and some hate.

Let me explain what I’m talking about. When a .NET object is saved to the DDS the object is reflected over and it’s public properties are extracted and mapped to a column in the database. The CLR Type of the object saved is saved but it is important to note that the DDS does not use serialization in the same way as, let’s say, the BinaryFormatter class in the .NET class library. What this essentially means is that the .NET object instance saved translates to a set of name value property pairs.

So where does the data container indifference come in then?

The DynamicDataStore class has 3 method groups for reading data from a store.

Methods that return instances of System.Object:

public abstract Object Load(Identity id);
public abstract IEnumerable<Object> LoadAll();
public abstract IEnumerable<Object> Find(string propertyName, object value);
public abstract IEnumerable<Object> Find(IDictionary<string, object> parameters);
public abstract IOrderedQueryable<Object> Items();

Methods that return instances of TResult:

public abstract TResult Load<TResult>(Identity id);
public abstract IEnumerable<TResult> LoadAll<TResult>();
public abstract IEnumerable<TResult> Find<TResult>(string propertyName, object value);
public abstract IEnumerable<TResult> Find<TResult>(IDictionary<string, object> parameters);
public abstract IOrderedQueryable<TResult> Items<TResult>();

Methods that return instance of EPiServer.Data.Dynamic.PropertyBag:

public abstract PropertyBag LoadAsPropertyBag(Identity id);
public abstract IEnumerable<PropertyBag> LoadAllAsPropertyBag();
public abstract IEnumerable<PropertyBag> FindAsPropertyBag(IDictionary<string, object> parameters);
public abstract IEnumerable<PropertyBag> FindAsPropertyBag(string propertyName, object value);
public abstract IOrderedQueryable<PropertyBag> ItemsAsPropertyBag();

This means that data saved to the DDS can be read back using any of the 3 method groups regardless of the CLR Type of the actual .NET object instance that was saved.

Some examples should help visualize what I’m talking about. Take the following class:

   1:   public class Person
   2:   {
   3:       public string FirstName { get; set; }
   4:       public string LastName { get; set; }
   5:       public DateTime DateOfBirth { get; set; }
   6:   }
 

Create a store in the DDS using the Person class as the definition for the store:

   1:  // Create the factory and the store
   2:  EPiServerDynamicDataStoreFactory factory = new EPiServerDynamicDataStoreFactory();
   3:   
   4:  // The definition of the store will be defined by the Person class
   5:  // i.e. it will have 3 properties, FirstName, LastName and DateOfBirth
   6:  DynamicDataStore store = factory.CreateStore(typeof(Person));
   7:   
   8:  // Save an instance of person
   9:  Person p = new Person()
  10:  {
  11:      FirstName = "John",
  12:      LastName = "Doe",
  13:      DateOfBirth = new DateTime(1972, 4, 21)
  14:  };
  15:   
  16:  store.Save(p);

As you would expect you can then read the person back using the following code:

   1:  // Read the person back using a Person class as the container
   2:  Person p2 = store.Find<Person>("LastName", "Doe").FirstOrDefault();

However, what you can also do is read the person back into a PropertyBag:

   1:  // Read the person back using a PropertyBag
   2:  PropertyBag bag = store.FindAsPropertyBag("LastName", "Doe").FirstOrDefault();

But even more surprising is that you can read it back with a completely different class:

class Person2
{
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public DateTime DateOfBirth { get; set; }
    public char Gender { get; set; }
}
 
   1:  // Read the person back using a Person2 class as the container
   2:  Person2 person2 = store.Find<Person2>("LastName", "Doe").FirstOrDefault();

What is happening here is that the stored properties are read into memory and then the DDS will map them against any matching properties (with same name and value type) on the Person2 class. In the above case FirstName, LastName and DateOfBirth will be successfully mapped but Gender will not and therefore have a default value for the CLR Type.

This mechanism could potentially be used as some kind of runtime polymorphism and even allows you to completely replace an entire class without affecting the data stored in the DDS.

The group of methods that return System.Object will always return an instance of the CLR Type that was actually used to save the properties to the DDS, in this case a Person class.

The source code for this example can be found here.

May 10, 2010

Comments

Please login to comment.
Latest blogs
A day in the life of an Optimizely OMVP: Learning Optimizely Just Got Easier: Introducing the Optimizely Learning Centre

On the back of my last post about the Opti Graph Learning Centre, I am now happy to announce a revamped interactive learning platform that makes...

Graham Carr | Jan 31, 2026

Scheduled job for deleting content types and all related content

In my previous blog post which was about getting an overview of your sites content https://world.optimizely.com/blogs/Per-Nergard/Dates/2026/1/sche...

Per Nergård (MVP) | Jan 30, 2026

Working With Applications in Optimizely CMS 13

💡 Note:  The following content has been written based on Optimizely CMS 13 Preview 2 and may not accurately reflect the final release version. As...

Mark Stott | Jan 30, 2026

Experimentation at Speed Using Optimizely Opal and Web Experimentation

If you are working in experimentation, you will know that speed matters. The quicker you can go from idea to implementation, the faster you can...

Minesh Shah (Netcel) | Jan 30, 2026