dashing
dashing copied to clipboard
Changing the type of a property from one class to another doesn't update the foreign key
class Entity {
public OtherEntity OtherEntity { get; set; }
}
to
class Entity {
public AnotherEntity OtherEntity { get; set; }
}
doesn't get spotted by dbm as a change to the foreign key