hi,
i have a problem with this odata command
var serviceuri = "http://localhost:26995/api/Cliente?$filter=(Attivo eq true) and (Operativo eq true)&$orderby=Descrizione";
where Operativo is a nullable boolean ... running it i obtain this error message
The binary operator Equal is not defined for the types 'System.Nullable`1[System.Boolean]' and 'System.Boolean'
how can i solve this?