Skip to content

Commit 4b5cbbe

Browse files
committed
updated readme references and doc.
1 parent 163a2ca commit 4b5cbbe

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

ModelFirst/MVC/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44

55
</div>
66

7-
> [`ADO.Net Entity Data Model/Designer` supports in `.Net Framework` but not in `.Net Core`.](https://docs.microsoft.com/en-us/answers/questions/363546/adonet-entity-data-model.html)
7+
> [`ADO.Net Entity Data Model/Designer` supports in `.Net Framework` but not in `.Net/EF Core`.](https://docs.microsoft.com/en-us/answers/questions/363546/adonet-entity-data-model.html)
8+
9+
To port an `EF6 Model` `EDMX-Based Model` to `EF Core`, regenerate a new code-based model using `Scaffold-DbContext`.
10+
11+
#### [EF - Model First Approach Sample](https://www.entityframeworktutorial.net/model-first-with-entity-framework.aspx)
12+
13+
#### [Port EF6 EDMX to EFCore](https://docs.microsoft.com/ef/efcore-and-ef6/porting/port-edmx)
814

915
In this approach, (`EF Core`) we model our entities and database context as code-based similar to Code-First. Then either using Migrations or DB Initializer, we create the database.
1016

ModelFirst/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44

55
</div>
66

7-
> [`ADO.Net Entity Data Model/Designer` supports in `.Net Framework` but not in `.Net Core`.](https://docs.microsoft.com/en-us/answers/questions/363546/adonet-entity-data-model.html)
7+
> [`ADO.Net Entity Data Model/Designer` supports in `.Net Framework` but not in `.Net/EF Core`.](https://docs.microsoft.com/en-us/answers/questions/363546/adonet-entity-data-model.html)
8+
9+
To port an `EF6 Model` `EDMX-Based Model` to `EF Core`, regenerate a new code-based model using `Scaffold-DbContext`.
10+
11+
#### [EF - Model First Approach Sample](https://www.entityframeworktutorial.net/model-first-with-entity-framework.aspx)
12+
13+
#### [Port EF6 EDMX to EFCore](https://docs.microsoft.com/ef/efcore-and-ef6/porting/port-edmx)
814

915
In this approach, (`EF Core`) we model our entities and database context as code-based similar to Code-First. Then either using Migrations or DB Initializer, we create the database.
1016

ModelFirst/RazorPages/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44

55
</div>
66

7-
> [`ADO.Net Entity Data Model/Designer` supports in `.Net Framework` but not in `.Net Core`.](https://docs.microsoft.com/en-us/answers/questions/363546/adonet-entity-data-model.html)
7+
> [`ADO.Net Entity Data Model/Designer` supports in `.Net Framework` but not in `.Net/EF Core`.](https://docs.microsoft.com/en-us/answers/questions/363546/adonet-entity-data-model.html)
8+
9+
To port an `EF6 Model` `EDMX-Based Model` to `EF Core`, regenerate a new code-based model using `Scaffold-DbContext`.
10+
11+
#### [EF - Model First Approach Sample](https://www.entityframeworktutorial.net/model-first-with-entity-framework.aspx)
12+
13+
#### [Port EF6 EDMX to EFCore](https://docs.microsoft.com/ef/efcore-and-ef6/porting/port-edmx)
814

915
In this approach, (`EF Core`) we model our entities and database context as code-based similar to Code-First. Then either using Migrations or DB Initializer, we create the database.
1016

0 commit comments

Comments
 (0)