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
Currently, DynamicQueryAttribute converts null keyword into actual null searches. However, this might be a blocking issue for some users that uses string keyword null in their datasets.
For example this: ?o=Equals&p=MyProperty&v=null
will be converted as: SELECT * FROM MyTable where MyProperty is null
however the actualy user intention might be SELECT * FROM MyTable where MyProperty = 'null'
Solution:
Make null conversion keyword an editable option in DynamicQueryBuilderSettings object.
The text was updated successfully, but these errors were encountered:
Currently, DynamicQueryAttribute converts
null
keyword into actualnull
searches. However, this might be a blocking issue for some users that uses string keywordnull
in their datasets.For example this:
?o=Equals&p=MyProperty&v=null
will be converted as:
SELECT * FROM MyTable where MyProperty is null
however the actualy user intention might be
SELECT * FROM MyTable where MyProperty = 'null'
Solution:
Make
null
conversion keyword an editable option inDynamicQueryBuilderSettings
object.The text was updated successfully, but these errors were encountered: