Pavel Voronin
Pavel Voronin
Some APIs return payloads which contain more than API consumer may need at the moment. Fore example Pipedrive SaaS when queried for products returns : ``` { "success": true, "data":...
I am running ASP.NET Core unit tests. Test class implements IDisposable interface and disposes `WebApplicationFactory`. Unfortunately, I am getting exception in my HF's filter which tries to create a new...
I have docker file with build process: ``` FROM mcr.microsoft.com/dotnet/sdk:3.1-buster as build WORKDIR /Repo COPY . . RUN dotnet tool restore -v diag RUN dotnet restore src -v diag RUN...
I tried to serilize result returned by C# code - that is `List` - and got an exception that List is not supported. Just curioius why? =)
I get the error on app startup: >System.ObjectDisposedException: 'Cannot access a disposed object. Object name: 'IServiceProvider'.' Stacktrace: ``` at Microsoft.Extensions.DependencyInjection.ServiceLookup.ThrowHelper.ThrowObjectDisposedException() at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType) at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider...
Hi, your cool extension is very nice, but is it possible to configure it, so it creates `sealed` classes?
### Background and motivation Right now I can to do this: ``` var result = await foo.GetSomething(); reshult.Should().BeWhatever(); ``` or ugly variant: ``` (await foo.GetSomething()).Should().BeWhatever(); ``` and for exceptions it's:...
### Background and motivation If I write assertion this way: ``` actualEnv.Should().BeEquivalentTo(env, _ => _.Excluding(_ => new { _.Id, _.Creator, _.LastEditor })); ``` the exception is thrown: > System.ArgumentException :...
I am playing with various multitenancy scenarios, and I'd like to have a model per tenant (tenantId received in request), so I am reading the [docs](https://learn.microsoft.com/en-us/ef/core/modeling/dynamic-model) and looking at the...
### I need the convenience of navigation properties and want to use them for implicit joins and filtering without having them as CLR properties or fields. #### Motivation - Aggregates...