Executing a Query from C# code to PostgreSQL
INSERT INTO SCHEMA_NAME.Table_name(c1) values (nextval(\'sequence_name\'));
Working If I manually add any int value in the place of nextval() & also query working if I run on DB directly
Executing a Query from C# code to PostgreSQL
INSERT INTO SCHEMA_NAME.Table_name(c1) values (nextval(\'sequence_name\'));
Working If I manually add any int value in the place of nextval() & also query working if I run on DB directly