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
yieldreturnnewValidationResult("The left and right side of the binary filter must be specified",new[]{nameof(Left),nameof(Right)});
44
+
45
+
if(BinaryData!=null&&(Left!=null||Right!=null))
46
+
yieldreturnnewValidationResult("The left and right side of the binary filter must not be present if the data are set",new[]{nameof(Left),nameof(Right)});
47
+
48
+
if(BinaryData!=null&&BinaryData.Count==0)
49
+
yieldreturnnewValidationResult("The binary data must not be empty",new[]{nameof(BinaryData)});
50
+
51
+
if(Left!=null&&Right!=null&&BinaryData!=null)
52
+
yieldreturnnewValidationResult("The left and right side of the binary filter must not be present if the data are set",new[]{nameof(Left),nameof(Right)});
53
+
54
+
if(BinaryData==null&&(Left==null||Right==null))
55
+
yieldreturnnewValidationResult("The left and right side of the binary filter must be specified",new[]{nameof(Left),nameof(Right)});
0 commit comments