I have a table (Oracle database) with an on insert row trigger initialising the primary key column. When I create a new application the model is generated with all columns attributed with [DatabaseGenerated(DatabaseGeneratedOption.Identity)].
Is there a way to avoid that? Expected result is just the primary key column to be attributed.
Also, the Add page is generated w/o controls. Understandably, because these are not created for identity fields. But removing these attributes from the model does not help as the page is not re-generated. Is there a way to re-generate a page after the model got changed?