Andrii Rublov
Andrii Rublov
There are two samples and a lot of stuff done by an open-source community, but when you setup a new project you could spend a lot of time trying to...
This PR implements delete/backspace assist for cases when the caret is inside record declaration/instance to help in deletion of redundant whitespace. The feature also works for anonymous records and records...
Currently only "Migrations project" and "Startup project" are persisted. Need to extend these data for common options used in almost all dialogs and dialog specific ones: From suggestion #46 -...
In current behavior, we are using .NET CLI just like simple `dotnet` command from a working directory. Need to get a path to the currently selected .NET SDK in Rider...
When the project uses [EntityFramework.Exceptions](https://github.com/Giorgi/EntityFramework.Exceptions), `SaveChanges`/`SaveChangesAsync` could lead to exceptions. E.g.: ```csharp context.Posts.Insert(post); context.{caret}SaveChanges(); // Warning EFXXXX: EF Core state mutatioon could lead to exceptions ``` ```csharp context.Posts.Insert(post); try {...
Currently, we are using the project's name as a unique identifier (on both front-end and back-end). It creates collisions, such as #105 when we have a solution folder or other...
EF Core 7 adds support for the `dotnet ef dbcontext scaffold` output customization using T4 templates. There is an [article](https://github.com/dotnet/EntityFramework.Docs/blob/main/entity-framework/core/managing-schemas/scaffolding/templates.md) about it. From the plugin side, we need to add...
There is a project that adds the ability to create migrations in an F# project: https://github.com/efcore/EFCore.FSharp We should add the ability to list projects with `EntityFrameworkCore.FSharp` NuGet package installed in...