I am currently making a custom property editor. I have to store quite alot of data, and I am currently doing it by making the $scope.module.value to a large object.
However, I reach a certain point when the object gets too big, and I get a System.Data.SqlClient.SqlException with additional information: String or binary data would be truncated. It basically means that the object is too big.
Is there another method I can use to store everything I need?
Thanks.
EDIT:
Should have done my research better. Found the answer in another post. I had to add valueType: "JSON" to my package.manifest, and resave the Data Type from the Developer section in the admin panel.
How to save alot of data in a Property Editor?
Hello!
I am currently making a custom property editor. I have to store quite alot of data, and I am currently doing it by making the $scope.module.value to a large object.
However, I reach a certain point when the object gets too big, and I get a System.Data.SqlClient.SqlException with additional information: String or binary data would be truncated. It basically means that the object is too big.
Is there another method I can use to store everything I need?
Thanks.
EDIT: Should have done my research better. Found the answer in another post. I had to add valueType: "JSON" to my package.manifest, and resave the Data Type from the Developer section in the admin panel.
is working on a reply...