protected virtual Routing GetRoutingForOperation(Inferrer inferrer) => Routing ?? new Routing(GetBody());
public DslPrettyPrintVisitor(IConnectionSettingsValues settings) { _sb = new StringBuilder(); _infer = settings.Inferrer; }
protected virtual Id GetIdForOperation(Inferrer inferrer) => Id ?? new Id(GetBody());
Routing IBulkOperation.GetRoutingForOperation(Inferrer inferrer) => GetRoutingForOperation(inferrer);
Id IBulkOperation.GetIdForOperation(Inferrer inferrer) => GetIdForOperation(inferrer);
protected virtual Id GetIdForOperation(Inferrer inferrer) => Self.Id ?? new Id(GetBulkOperationBody());
internal FieldValues(Inferrer inferrer, IDictionary <string, LazyDocument> container) : base(container) => _inferrer = inferrer;