Hello,
Given a class which encapsulate a State...
Lets say :
class StateOwner
{
State CurrentState {get;set;}
}
static class StateFactory
{
static State GetStateXYZ()
{
return new StateXYZ();
}
}
Now I have no interest to persist my different states in the datebase. I just want to be able to have the correct state when I load back the StateOwner class.
It's propably something like a with a discriminator, but I don't know how to do it for a class (StateXYZ) which is not persisted in the DB.
Thanks for your time!
