entityBuilder.Property(e => e.NonNullProperty).IsRequired();
string someNull = null;
context.Entities.Where(e => e.NonNullProperty == someNull).BatchUpdateAsync(e => new Entity { ... });
This may lead to the predicate section translated as a boolean.
This may lead to the predicate section translated as a boolean.