Intechnity-com / OdooJsonRpcClient

Odoo Client Json Rpc
MIT License
67 stars 29 forks source link

OdooFilterOfT works but not OdooFilter #77

Open Maoie86 opened 1 year ago

Maoie86 commented 1 year ago

This works. var filter = OdooFilter.Create() .Or() .EqualTo(x => x.Name, "My Company (San Francisco)") .EqualTo(x => x.Name, "PL Company");
but using the .In error with can convert int[] to OooFilterValue

This one does not. var filter = OdooFilter.Create() .Or() .EqualTo("name", "My Company (San Francisco)") .EqualTo("name", "PL Company");