Is there a way to use ARRAYs in Entity Framework + PostgreSql Is there a way to use ARRAYs in Entity Framework + PostgreSql postgresql postgresql

Is there a way to use ARRAYs in Entity Framework + PostgreSql


It's possible to do this if you use Entity Framework Core with the Npgsql EF Core provider.

The code-first approach would be:

[Column("somedata", TypeName = "integer[]")]public int[] SomeData { get; set; }