Replies: 1 comment 8 replies
-
iirc, the use of Basically, again iirc, it prevents the use of data binding in most scenarios. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, we had a case where the UI (using WPF) was blocking for a few seconds at the end of fetching a
BusinessListBase
throughIDataPortal<T>.FetchAsync()
. We thought the binding of the list would cause the blocking, but we verified it with the following snippet in theBusinessObjectViewModel<T>
that the blocking happens before
Model
is set. While going through the csla source code, we found that there were no.ConfigureAwait(false)
applied in the DataPortal access async methods. Is there a reason for this?Beta Was this translation helpful? Give feedback.
All reactions