Entity Framework not working with temporal table
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 in table '<MyDatabase>.dbo.<MyTableName>. Use INSERT with a column list to exclude the GENERATED ALWAYS column, or insert a DEFAULT into GENERATED ALWAYS column. It looks like EF is trying to update the values of the PERIOD columns which are managed by the system. Removing the columns from the EDMX file seems to correct the problem, but this is