Skip to content
This repository was archived by the owner on Apr 17, 2025. It is now read-only.

Commit b114dcc

Browse files
committed
Fix documentazione
1 parent 9047e96 commit b114dcc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/NET6CustomLibrary/Docs/DBContext/README-DbContext-Generics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Entity Framework Core DbContext generics methods configuration
22

33

4-
## Example entity
4+
## Example entity interface
55

66
In this example, the entity is a data model that implements the *IEntity* interface and has a primary key of type *int*.
77

src/NET6CustomLibrary/Docs/DBContext/README-DbContextPool-MySQL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
```json
77
"ConnectionStrings": {
88
"Default": "Server=[SERVER];Database=[DATABASE];Uid=[USERNAME];Pwd=[PASSWORD];Port=3306"
9-
},
9+
}
1010
```
1111

1212
<b>Note:</b> The default port for Mysql / MariaDB is 3306, but it can be changed as needed according to your needs.

src/NET6CustomLibrary/Docs/DBContext/README-DbContextPool-Postgres.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
```json
77
"ConnectionStrings": {
88
"Default": "Host=[SERVER];Port=5432;Database=[DATABASE];Username=[USERNAME];Password=[PASSWORD]"
9-
},
9+
}
1010
```
1111

1212
<b>Note:</b> The default port for Postgres is 5432, but it can be changed as needed according to your needs.

src/NET6CustomLibrary/Docs/DBContext/README-DbContextPool-SQLServer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
```json
77
"ConnectionStrings": {
88
"Default": "Data Source=[SERVER];Initial Catalog=[DATABASE];User ID=[USERNAME];Password=[PASSWORD]"
9-
},
9+
}
1010
```
1111

1212
<b>Note:</b> The default port for SQL Server is 1433, but it can be changed as needed according to your needs.

src/NET6CustomLibrary/Docs/DBContext/README-DbContextPool-SQLite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
```json
77
"ConnectionStrings": {
88
"Default": "Data Source=Data/MyDatabase.db"
9-
},
9+
}
1010
```
1111

1212

0 commit comments

Comments
 (0)