Fix casing of Identity's --useSqLite (#24033)
parent
4e065d0696
commit
54561299c5
|
@ -134,10 +134,10 @@ dotnet add package Microsoft.VisualStudio.Web.CodeGeneration.Design
|
|||
dotnet aspnet-codegenerator identity -dc WebApp1.Data.ApplicationDbContext --files "Account.Register;Account.Login;Account.Logout;Account.RegisterConfirmation"
|
||||
```
|
||||
|
||||
When using SQLite, append `--useSqlite` or `-sqlite`:
|
||||
When using SQLite, append `--useSqLite` or `-sqlite`:
|
||||
|
||||
```dotnetcli
|
||||
dotnet aspnet-codegenerator identity -dc WebAppAuth.Data.ApplicationDbContext --files "Account.Register;Account.Login;Account.Logout;Account.RegisterConfirmation" --useSqlite
|
||||
dotnet aspnet-codegenerator identity -dc WebAppAuth.Data.ApplicationDbContext --files "Account.Register;Account.Login;Account.Logout;Account.RegisterConfirmation" --useSqLite
|
||||
```
|
||||
|
||||
PowerShell uses semicolon as a command separator. When using PowerShell, escape the semicolons in the file list or put the file list in double quotes, as the preceding example shows.
|
||||
|
@ -400,10 +400,10 @@ dotnet add package Microsoft.VisualStudio.Web.CodeGeneration.Design
|
|||
dotnet aspnet-codegenerator identity -dc WebApp1.Data.ApplicationDbContext --files "Account.Register;Account.Login;Account.Logout;Account.RegisterConfirmation"
|
||||
```
|
||||
|
||||
When using SQLite, append `--useSqlite` or `-sqlite`:
|
||||
When using SQLite, append `--useSqLite` or `-sqlite`:
|
||||
|
||||
```dotnetcli
|
||||
dotnet aspnet-codegenerator identity -dc WebAppAuth.Data.ApplicationDbContext --files "Account.Register;Account.Login;Account.Logout;Account.RegisterConfirmation" --useSqlite
|
||||
dotnet aspnet-codegenerator identity -dc WebAppAuth.Data.ApplicationDbContext --files "Account.Register;Account.Login;Account.Logout;Account.RegisterConfirmation" --useSqLite
|
||||
```
|
||||
|
||||
PowerShell uses semicolon as a command separator. When using PowerShell, escape the semicolons in the file list or put the file list in double quotes, as the preceding example shows.
|
||||
|
|
Loading…
Reference in New Issue