skip to Main Content

EF Core 3.1 PostgreSQL LEAD window function

We are using .NET Core 3.1, Microsoft.EntityFrameworkCore 3.1.9 and Npgsql 4.1.9. We have the following simple TestExecution scaffolded class: [Table("test_execution", Schema = "test")] public partial class TestExecution { [Key] [Column("id")] public int Id { get; set; } [Column("test_result")] public string…

VIEW QUESTION
Back To Top
Search