When you\'re setting up a one:many relationship in EF code-first, you can choose whether it should cascade on delete like so:
modelBuilder.Entity
Entity framework work with relationship through navigation properties, so ON UPDATE CASCADE
allready switched on for all such relations.
Hmm and on the other hand i'm not sure that you can directly change primary key of entity from Entity Framework.
You can't change the primary key.
That is a bad practice in general, but particularly when working with an ORM.
Well, apparently the answer to this is that you should never change the primary key in an ORM, even though DBMS's support the changing of the primary key. Because the assumption is that you will never change the primary key, there's no need for entity framework to allow you to specify whether to cascade on update, because the idea is that that primary key update will never happen.
Note, though, that this can still be done manually in most databases even if the entity framework ORM doesn't let you do it that way. The DBMS will just use its default behaviour for a cascade update if you do the primary key update, manually, directly in the database.