Closed meziantou closed 6 years ago
SQLNado generates an invalid insert statement when there is no insert parameter. This can happen when all columns are computed.
INSERT INTO Customer () VALUES ()
This PR changes the SQL statement to
INSERT INTO Customer DEFAULT VALUES
BTW, I've added the test project to the solution and a few tests.
SQLNado generates an invalid insert statement when there is no insert parameter. This can happen when all columns are computed.
This PR changes the SQL statement to
BTW, I've added the test project to the solution and a few tests.