You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can anyone shed light on the correct process of altering a table-creation in an EF core migration so that the table has partitioning and inherited tables?
The text was updated successfully, but these errors were encountered:
PostgreSQL inheritance is tracked on the EF Core side by #10739. But you can still use EF Core's regular inheritance (TPH) as detailed here - it's just not the PostgreSQL inheritance feature.
Note that you can set up table partitioning up yourself without any help from EF Core: just generate a migration to create your table, and then edit it and use raw SQL to add the necessary clause. You may be able to get away with it for PostgreSQL inheritance as well, but I'm not really sure.
Can anyone shed light on the correct process of altering a table-creation in an EF core migration so that the table has partitioning and inherited tables?
The text was updated successfully, but these errors were encountered: