Brian MacKay
Brian MacKay
In my _Host, I have an unusual tag: There are reasons for this that it doesn't make sense to elaborate on right now, but it results in the base path...
I have a table, UserDocument, that has two references to the User table: UserId and CreatedByUserId. This generates: ```c# public virtual User CreatedByUser { get; set; } public virtual User...
In the readme here: https://github.com/Polly-Contrib/Polly.Contrib.WaitAndRetry/blob/master/README.md?plain=1 I found this: `var delay = Backoff.ExponentialBackoff(TimeSpan.FromMilliseconds(100), retryCount: 5, factor: 4);` It goes on to say: _The upper for this retry with a growth factor...