I have table:
CREATE TABLE [dbo].[Items]
(
[Id] INT IDENTITY (1, 1) NOT NULL,
PRIMARY KEY CLUSTERED ([Id] ASC)
);
Id is auto increment and I am creating new record like this:
var Context = new Entities();
var Item = new Items();
Context.SaveChanges();
But in the table there is no new record. What am I doing wrong?