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?
Neither of these is currently implemented:
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.
@roji thanks for the reply - shortly after posting this, I just went ahead and wrote the script by hand
Great, good to hear it worked out.