現在の動作が気になる場合は、UseDatabaseNullSemantics
の設定を検討してください。 true
に 。
public class MyContext : DbContext
{
public MyContext()
{
this.Configuration.UseDatabaseNullSemantics = true;
}
}
または
myDbContext.Configuration.UseDatabaseNullSemantics = true;