Entity Framework 更新带外键的实体为null

using (var ctx = new PortalContext())
{
    var city = ctx.Cities.Find(42);
    ctx.Entry(city)
        .Reference(c => c.Province)
        .Load();
    city.Province = null;

    ctx.SaveChanges();
}

原文地址:https://www.cnblogs.com/lishidefengchen/p/5338136.html