My existing database uses sequences to generate primary key values. The previous version of the product manually calls SELECT <sequence>.NEXTVALUE FROM DUAL
to generate the PK and add it directly to the model.
There should be a way to configure EF such that it automatically gets the next value using the sequence, but without modifying the database.
I'm happy to create a value generator, but I would assume there is already one, but I can't find it.