-
I have a problem when invoking a Command from another Command, because the properties set in the Excecute method of the inner command are not returned [Execute] var cmdLog = DataPortal.Create(); if (cmdLog.CmdOk) <--- This is always false. } |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Sorry for my mistake, i have to use the result of the DataPortal.Execute like this cmdLog = DataPortal.Execute(cmdLog); |
Beta Was this translation helpful? Give feedback.
Sorry for my mistake, i have to use the result of the DataPortal.Execute like this
cmdLog = DataPortal.Execute(cmdLog);