Skip to content

Commit

Permalink
Removed extra parenthesis
Browse files Browse the repository at this point in the history
There was an extra left parenthesis with no matching right one, so I removed it.
  • Loading branch information
JohnMHigginsPMC authored Jul 8, 2021
1 parent 52a925a commit a90c297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entity-framework/core/dbcontext-configuration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ The following table contains examples for common database providers.
| SQLite | `.UseSqlite(connectionString)` | [Microsoft.EntityFrameworkCore.Sqlite](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Sqlite/)
| EF Core in-memory database | `.UseInMemoryDatabase(databaseName)` | [Microsoft.EntityFrameworkCore.InMemory](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.InMemory/)
| PostgreSQL* | `.UseNpgsql(connectionString)` | [Npgsql.EntityFrameworkCore.PostgreSQL](https://www.nuget.org/packages/Npgsql.EntityFrameworkCore.PostgreSQL/)
| MySQL/MariaDB* | `.UseMySql((connectionString)` | [Pomelo.EntityFrameworkCore.MySql](https://www.nuget.org/packages/Pomelo.EntityFrameworkCore.MySql/)
| MySQL/MariaDB* | `.UseMySql(connectionString)` | [Pomelo.EntityFrameworkCore.MySql](https://www.nuget.org/packages/Pomelo.EntityFrameworkCore.MySql/)
| Oracle* | `.UseOracle(connectionString)` | [Oracle.EntityFrameworkCore](https://www.nuget.org/packages/Oracle.EntityFrameworkCore/)

*These database providers are not shipped by Microsoft. See [Database Providers](xref:core/providers/index) for more information about database providers.
Expand Down

0 comments on commit a90c297

Please sign in to comment.