I am saving a custom type in Dynamic Data Store, and after the DDS Store was first created I realized it would be good to decorate one of the properties with the
[EPiServerDataIndex]
attribute, since I will filter the data on that property.
But after adding the indexing attribute on one of my properties I get this error message whenever I try to interact with the Store:
Server Error in '/' Application.
Incorrect syntax near 'SE'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: Incorrect syntax near 'SE'.
Source Error:
Line 24: public DynamicDataStore GetStore()
Line 25: {
Line 26: DynamicDataStore store = DynamicDataStoreFactory.Instance.GetStore(typeof(T));
Line 27: return store;
Line 28: }
Hi!
I am saving a custom type in Dynamic Data Store, and after the DDS Store was first created I realized it would be good to decorate one of the properties with the
Server Error in '/' Application.
Incorrect syntax near 'SE'.