Korolev Dmitry
Korolev Dmitry
Hello! I am following articles [Create Tool Window](https://www.jetbrains.com/help/resharper/sdk/HowTo/CreateToolWindows.html?search=tool) and [Tool Windows](https://www.jetbrains.com/help/resharper/sdk/Platform/Shell/ToolWindows.html?search=tool) in a dev guide. First of all, I find it confusing to see several different approaches on creating tool...
Hello! It would be super cool, if you could kindly share a briefly explanation of how did you get all of those APIs. For educational purposes surely! I wanted to...
`DbString` is a known type in [Dapper](https://github.com/DapperLib/Dapper/blob/main/Dapper/DbString.cs) and currently there is no dedicated support in DapperAOT for it. Current PR does 2 things regarding `DbString`: 1) in analyzer mode reports...
Dapper.Vanilla will incorrectly process `?` symbol assuming its a syntax for pseudo-positional arguments even when it is used in the SQL string. I.e: ```sql select 'this ?looks? like pseudo-positional' ```...
In .NET6 [DateOnly and TimeOnly](https://learn.microsoft.com/en-us/dotnet/standard/datetime/how-to-use-dateonly-timeonly) were introduced. Current PR proposes support for those in Dapper.AOT. I performed testing against MsSql and PostgreSql. Check [DateOnlyTimeOnlyTests.cs](https://github.com/DeagleGross/DapperAOT/blob/7a52d947689c31ff9f7f5964e8c03d01bfd61e70/test/Dapper.AOT.Test/Integration/DateOnlyTimeOnlyTests.cs) for validating how data is being...
Adds migration tooling documentation which is being actively developed at a moment --- #### Internal previews | 📄 File | 🔗 Preview link | |:--|:--| | [docs/orleans/migration/guide.md](https://github.com/dotnet/docs/blob/8a28602631fd9c06b1a202850291ae678657163e/docs/orleans/migration/guide.md) | [docs/orleans/migration/guide](https://review.learn.microsoft.com/en-us/dotnet/orleans/migration/guide?branch=pr-en-us-46033) |...
Adding logs and refactoring configuration of https://github.com/dotnet/orleans/pull/9532. also testing whether the memory pressure works against CI agents here. ###### Microsoft Reviewers: [Open in CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com/dotnet/orleans/pull/9577)
Current PR adds a support to parse use cases with `CommandDefinition`. ## Usage check If an user invocation has 2 or more parameters which are 1) `cnn`; 2) `command` where...
PR proposes to support `OrleansJsonSerializer` to be used for serialization/deserialization payload in Orleans streaming. That capability is added as experimental feature, and should only be used for migration from Orleans...