ASP.NET MVC Enum in Session -


i storing enum in session:

session.add("workflowstatus", workflowstatus); 

later on trying retrieve enum doing:

model.selectedworkflowstatus = session["workflowstatus"]; 

which doesn't work. idea how can convert session["workflowstatus"]; enum?

the session return value object, need cast appropriate type i.e.

model.selectedworkflowstatus = (workflowstatustype)session["workflowstatus"]; 

Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -