vote up 0 vote down star

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!

flag

57% accept rate
I don't see what this has to do with NHibernate if the State is not being persisted to the database. Also, if you are not storing the state in the database, where are you retrieving it from to load it into the StateOwner class? – Stuart Childs May 20 at 20:51
The class State (StateXYZ) is not persisted, but I need the state owner to know how to persist it's current State. So it will instantiate right state class. StateOwner.CurrentState need to be persisted but NH does not know of State class, which is my problem. – pmlarocque May 22 at 13:47
Only way I found was to make an enum for each state class, save the current state as a int, and change the StateOwner.CurrentState for StateOwner.GetState() which call the StateFactory with the enum value. Works because the State class can be considered as a value object. But it look'n'feel like monkey patching to me. – pmlarocque May 22 at 13:52

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.