Version 6.2.0 release #3127
Replies: 2 comments 4 replies
-
@rockfordlhotka is there a reason why the synchronous data portal Execute method doesn't also have this overload to accept parameters? There are certain cases where I execute a command object synchronously instead of async and if the synchronous version doesn't allow parameters, then it means that the command would still need to have a create method and use properties to pass in parameters. Just wondering if this was a design decision or an oversight. Thanks. |
Beta Was this translation helpful? Give feedback.
-
@rockfordlhotka For #3044 it looks like we have to use compiler directives? We have a business library currently used in Winforms but could be called from other UI platforms in the future. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I am pleased to announce the release of CSLA version 6.2.0. Mostly bug fixes, but with one enhancement: the data portal
ExecuteAsync
method now accepts parameters.Using
ExecuteAsync
with parameters is more like a fetch than an update. In other words, the data portal does this:ExecuteAsync
accepts parameters and passes them to the serverThe original behavior of the
ExecuteAsync
method is unchanged (if you create a command object on the client and execute it).Full details of this release are here: https://github.com/MarimerLLC/csla/releases/tag/v6.2.0
Beta Was this translation helpful? Give feedback.
All reactions