Vahid Nasiri

Results 31 comments of Vahid Nasiri

Not yet. [Interceptors are missing from EF Core 1.x](https://github.com/aspnet/EntityFramework/issues/626).

@Mitkari You are using an old version of the NuGet's feed packages.nuget.org/**v1**. Create a `NuGet.config` file in the project directory which contains the following: ```xml ```

You can use `netstandard1.6` libs from `.Net Framework 4.6.1`. https://docs.microsoft.com/en-us/dotnet/standard/net-standard

All communications here are encrypted using the AES algo. So it's not possible to detect the protocol headers (or anything) from it unless first decrypting it using your server's `secret...

More info in Persian: https://paskoocheh.com/blog/posts/2018-07-31-bgp-hijack-telegram-iran.html In English: https://bgpstream.com/event/144057

EF Core uses `Castle.Proxies` to support lazy loading. Also other libraries such as AutoMapper are using it too. [Sometimes](https://github.com/castleproject/Core/issues/193) it means you have initialized auto-mapper [more than once](https://stackoverflow.com/questions/52925486/ef-core-2-1-lazy-loading-in-integration-tests) or you...

I can't reproduce your issue. To test it, First I [enabled the redis provider](https://github.com/VahidN/EFSecondLevelCache.Core/blob/master/src/Tests/EFSecondLevelCache.Core.AspNetCoreSample/Startup.cs#L62) and then called the https://localhost:5001/ which maps to the [FirstOrDefaultAsync sample](https://github.com/VahidN/EFSecondLevelCache.Core/blob/master/src/Tests/EFSecondLevelCache.Core.AspNetCoreSample/Controllers/HomeController.cs#L59). It works.

[Announcing a better Second Level Caching Library!](https://github.com/VahidN/EFSecondLevelCache.Core/issues/67)

Open the `%USERPROFILE%\.omnisharp\omnisharp.json` file and change these settings including the `documentAnalysisTimeoutMs` which is 10 seconds by default: ```json { "RoslynExtensionsOptions": { "enableDecompilationSupport": true, "enableAnalyzersSupport": true, "enableImportCompletion": true, "enableAsyncCompletion": true, "documentAnalysisTimeoutMs":...

I think [Regex DOS (ReDOS)](https://github.com/find-sec-bugs/find-sec-bugs/blob/037a91b887fb220ad65b23bd85eea936d2c44a15/plugin/src/main/java/com/h3xstream/findsecbugs/ReDosDetector.java) and [its tests](https://github.com/find-sec-bugs/find-sec-bugs/blob/1d288ef15122a4d883343769dd221cbe7bbeecb1/plugin/src/test/java/com/h3xstream/findsecbugs/ReDosDetectorTest.java) can be used as an inspiration.