I'm using database first entity framework 6. After changing some of the tables in my schema to be temporal tables, I started getting the following error when attempting to insert new data:...Cannot insert an explicit value into a GENERATED ALWAYS column ...
I'm having issue in Insertion of data in ...Temporal table... using C# Entity Framework...The Table schema is...CREATE TABLE People(
PeopleID int PRIMARY KEY NOT NULL,
Name varchar(50) Null,
LastName varchar(100) NULL,
NickName varchar...