How can I use System-Versioned Temporal Table with Entity Framework?
问题 I can use temporal tables in SQL Server 2016. Entity Framework 6 unfortunately does not know this feature yet. Is there the possibility of a workaround to use the new querying options (see msdn) with Entity Framework 6? I created a simple demo project with an employee temporal table: I used the edmx to map the table to entity (thanks to Matt Ruwe): Everything works fine with pure sql statements: using (var context = new TemporalEntities()) { var employee = context.Employees.Single(e => e