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
Here is what to include in your request to make sure we implement a solution as quickly as possible.
1. Description
Try to execute a query with a where as :
.Where("field1 == @0 & Field2 <> @1","xxx","")
The second parameter is empty string.
2. Exception
No excexption raise
3. technical details
Get the log of what entity generates :
WHERE (('XXX' = "Extent1"."field1 ") AND ("Extent1"."field1 " IS NOT NULL) AND
( NOT (('' = "Extent1"."Field2 ") AND ("Extent1"."Field2 " IS NOT NULL))))
The error is in Field2 " IS NOT NULL=> shoud be IS NULL without NOT because we set a NOT before :
Here is what to include in your request to make sure we implement a solution as quickly as possible.
1. Description
Try to execute a query with a where as :
The second parameter is empty string.
2. Exception
No excexption raise
3. technical details
Get the log of what entity generates :
The error is in Field2 " IS NOT NULL=> shoud be IS NULL without NOT because we set a NOT before :

with Field2 != @1 => gives the same issue
The text was updated successfully, but these errors were encountered: