dashing icon indicating copy to clipboard operation
dashing copied to clipboard

Changing the type of a property from one class to another doesn't update the foreign key

Open markjerz opened this issue 8 years ago • 0 comments

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

markjerz avatar May 23 '17 13:05 markjerz