If you have two independent update objects:
var U1 = Builders<T>.Update.Set(_ => _.A, null);
var U2 = Builders<T>.Update.Set(_ => _.B, null);
How can you chain them so that the result would be:
var U = Builders<T>.Update.Set(_ => _.A, null).Set(_ => _.B, null);
I tried to do this:
var U = U1 & U2;
and, while it works for filters, it doesn't work for updates