Postgres database contains product table with natural primary key:
create table product
(
productcode char(10) primary key,
price numeric(12,2),
... a lot of other columns
);
and other similar tables with natural primary keys.
ASP.NET 5 MVC application is used to update it using EF Core with Npgsql data provider.
If product code is also changed, EF Core throws error
The property 'Product.Productcode' is part of a key and so cannot be modified or marked as modified. To change the principal of an existing entity with an identifying foreign key, first delete the dependent and invoke 'SaveChanges', and then associate the dependent with the new principal.
Product code is used as foreign key in other tables (with ON UPDATE CASCADE clause) so it cannot deleted.
Database structure change is not an option.
How to allow update of the primary key column also?
Some ideas:
Block this check in EF Core, e.q setting old value to same as new value forcibly before update.
Set primary key to some other value before saving changes.
Force EF Core to create update statement and execute it manually
Use some EF Core extension or other framework.
Change Npgsql EF core provider to allow this.
Which is best way to implement this without changing database structure?
CodePudding user response:
Since you are changing a primary key , as a matter of fact it is not updating , but adding a new product. So
Create a new product from existing one, that will have a new product code
Update ALL items from all tables that have the previous product code, replacing the previous foreign key, with the new one.
After this you can delete the previous product.
If you try to turn off validation and change the code, after this your db will be broken, and you will not be able to use it again, since you will constantly have the integration error.