I'm trying to insert a new client record in Odoo8 PostrgreSQL database using c#.
To connect with PostgreSQL database from c# , i use npgsql.
here is my Insert command
cmd.CommandText = "INSERT INTO res_partner (name,email,notify_email ,active) VALUES ('user name','[email protected]','[email protected]'," + true + ")";
I'm able to see the new insert record in res_partner table using pgAdmin, but using Odoo , i'm not able to see the new client.