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
Next Update crashes because the x => x.Name == null will be translated to a Comparison.Is. As a consequence, in Update.cs, a InvalidOperationException is thrown saying 'Can't use a non-equality here'.
In the Where part, this would be correct but in the Set part it should be translated to a Comparison.Equals.
Next Update crashes because the x => x.Name == null will be translated to a Comparison.Is. As a consequence, in Update.cs, a InvalidOperationException is thrown saying 'Can't use a non-equality here'.
In the Where part, this would be correct but in the Set part it should be translated to a Comparison.Equals.
I solved this by adding a line in the Set method in Update.cs before the check on equality comparison.
The text was updated successfully, but these errors were encountered: