Mikhail Chumakov

Results 3 comments of Mikhail Chumakov

> Hi @zordark , we block writes when the circuit breaker is triggered. In order to resume indexing, you will need to clear out the cache. @jmazanec15 thx for the...

You can pass initialized container to Startup class directly. ```c# public class Startup : IStartup { private IContainer _container; public Startup(IConfiguration configuration, IContainer container) { Configuration = configuration; _container =...

We are working in .net 4.8 environment and using next workaround. In csproj file with migrations we are coping all dependencies to output folder: ``` compile; runtime; build; native; contentfiles;...