I have a Dynamic Data application to which I have added a class for the EDM extension. Everything works fine, but now I'm trying to set the value of an entity property equal to the value in the session state and not recognize the session command. I am trying to do something like this:
audit.action_by = CStr(Session("person_name"))
I think this is because I don't have an Inheriting Page class, but if I add an Inherits Page, it will break other things. How can I include a class in the ability to use sessions directly without inheriting the page?
source
share