.NET Filter Fix

If you are having problems with the filters on the systemDemo code or using the APIDocs

Use 1 for “true” & 0 for “false”

I.e

Change SqlQuery query = new SqlQuery { Filter = “is_active=true”, Fields = “*”, Related = service_by_storage_service_id,role_by_user_to_app_to_role", };

To SqlQuery query = new SqlQuery { Filter = “is_active=1”, Fields = “*”};

1 Like

Thanks @YipYip for this tip! Super helpful.