Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
Here is a suggestion and what we do. Create a custom class that has all of the properties that you want. Then create a table that has a item type (integer / enum) and a data (VarBinary) field. The reason you would create an item type field is so you can create as many different classes as you want. Once you have the class created, you can serialize to the table to save the state, then when you bring it back out it is already a class with the properties that you need. It makes coding much easier and this is a great place to use serialization to save off states.
|