You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: This leads to potentially running the query with a null or undefined parameter, resulting in a NullReferenceException in QueryService.PopulateProperties.
If a query has observable parameters, areAllParametersSet will return true even when this observable parameter has null value.
Example:
query = someQuery.create();
query.someParameter(ko.observable());
query.areAllParametersSet(); // will return true.
The text was updated successfully, but these errors were encountered: