You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: GeneralError: Undefined binding(s) detected when compiling DEL. Undefined column(s): [id] query: delete from [table_name] where [id] in (?);select @@rowcount
Steps to reproduce
created a fresh application with existing mssql database. Created a model via cli
Expected behavior
curl -X DELETE http://localhost:3030/objects/my_id should delete the record
Actual behavior
error: GeneralError: Undefined binding(s) detected when compiling DEL. Undefined column(s): [id] query: delete from [table_name] where [id] in (?);select @@rowcount
curl -X GET http://localhost:3030/objects/my_id gives json as result
curl -X GET http://localhost:3030/objects/ gives all results from database
also post and patch works, just delete gives that error.
The text was updated successfully, but these errors were encountered: