How to change and test isolation levels
Operation levels prevent and regulate the ability to perform certain operations in parallel on one data array. For example, if a certain isolation level is set, until a transaction is completed by ...
Operation levels prevent and regulate the ability to perform certain operations in parallel on one data array. For example, if a certain isolation level is set, until a transaction is completed by ...
Microsoft opinion in 2012 г. WARNING: This post goes deep into an advanced area of .NET that most developers never need to think about. This is the opinion of a great developer, Microsoft employee...
To understand await/async try debug the following code. You will see that await automatically call the GetAwaiter() of class implementing INotifyCompletion. And then CLR automatically calls IsCom...
For class and members [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] inside a method #pragma warning disable...
If we have only several endpoints for requests - use httpclient, define address, base address, path, query, get a response and deserialize it into model. Pattern https://github.com/dotnet/d...
That way you will receive a more strict warning that will look like an error. <MSBuildTreatWarningsAsErrors>True</MSBuildTreatWarningsAsErrors> JetBrain Rider displays Succeeded: Fals...
It’s interesting to look error descriptions through your phone in idle time and try on all sorts of mistakes for yourself. Warning messages https://learn.microsoft.com/bs-latn-ba/dotnet/csha...
There only two exports type: pfx and pem https://github.com/dotnet/aspnetcore/blob/a450cb69b5e4549f5515cdb057a68771f56cefd7/src/Shared/CertificateGeneration/CertificateExportFo...
I haven’t seen this use case for is operator before and it doesn’t seem to be mentioned in the manual. The idea comes down to the fact that you can add checks based on the type and value of propert...
There is a principle of shifting work to others “ Let someone else do the hard part but faithful adherence to this principle creates new dependencies. There is a ruby gem to generate post template....