You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
EntityFrameworkCore.Jet/test/System.Data.Jet.Test/Resources/CheckIfTableExistsTestQueri...

13 lines
293 B
Plaintext

ExecuteNonQuery==========
CREATE TABLE [CheckIfTableExistsTable] (
[StudentId] int NOT NULL IDENTITY,
[Notes] text NULL,
[StudentName] varchar(50) NOT NULL,
CONSTRAINT [PK_Students] PRIMARY KEY ([StudentId])
);
ExecuteNonQuery==========
DROP TABLE [CheckIfTableExistsTable]