db.Entity.Update(x)を使用するのはいつものことですか? 以下のコードはそれなしで動作します。Entity Framework 7:db.Entity.Update(x)が必要な場合
using (var db = new DBContext())
{
var b = db.Building.First();
b.Residental = true;
db.Building.Update(b); // Still works without this line
await db.SaveChangesAsync();
}
素晴らしいですが、今は明らかです。ありがとうございました! – AsValeO