@@ -6,33 +6,23 @@ A VS Code extension to manage Entity Framework migrations.
66
77## Features
88
9- ![ treeview ] ( images/treeview-screenshot.png )
9+ ![ Entity Framework Migrations ] ( images/treeview-screenshot.png )
1010
11- - List dbContexts for all projects within a solution
11+ - List migrations by [ DbContext ] ( https://learn.microsoft.com/en-us/dotnet/api/microsoft.entityframeworkcore.dbcontext )
1212- Add/remove/run/undo migrations
13+ - Export [ DbContext] ( https://learn.microsoft.com/en-us/dotnet/api/microsoft.entityframeworkcore.dbcontext ) as SQL script
1314
1415## Requirements
1516
1617- [ dotnet sdk] ( https://dotnet.microsoft.com/download )
1718- [ efcore tools] ( https://learn.microsoft.com/en-us/ef/core/cli/dotnet )
18- - A solution (` .sln ` ) file with projects
1919- [ Microsoft.EntityFrameworkCore.Design] ( https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Design ) must be installed in one of the projects
2020
2121## Extension Settings
2222
2323This extension contributes the following settings:
2424
25- - ` entityframework.env ` : Custom environment vars, for example:
26- ``` json
27- {
28- "entityframework.env" : {
29- "ASPNETCORE_ENVIRONMENT" : " LocalDev" ,
30- "TenantId" : " 12345"
31- }
32- }
33- ```
3425- ` entityframework.commands ` : Custom commands, for example:
35-
3626 ``` json
3727 {
3828 "entityframework.commands" : {
@@ -87,10 +77,24 @@ This extension contributes the following settings:
8777 }
8878 }
8979 ```
80+ - ` entityframework.env ` : Custom environment variables, for example:
81+ ``` json
82+ {
83+ "entityframework.env" : {
84+ "ASPNETCORE_ENVIRONMENT" : " LocalDev" ,
85+ "TenantId" : " 12345"
86+ }
87+ }
88+ ```
9089
9190## Performance
9291
93- The EF tools execute application code at design time to get information about the project, thus performance can be slow on large projects.
92+ The EF tools execute application code at design time to get information about the project, thus performance on large projects can be slow.
93+
94+ ## Support
95+
96+ - 👉 [ Submit a bug report] ( https://github.com/badsyntax/vscode-entity-framework/issues/new?assignees=badsyntax&labels=bug&template=bug_report.md&title= )
97+ - 👉 [ Submit a feature request] ( https://github.com/badsyntax/vscode-entity-framework/issues/new?assignees=badsyntax&labels=enhancement&template=feature_request.md&title= )
9498
9599## License
96100
0 commit comments