https://github.com/dimitrietataru/efcore-mapping
EntityFramework Core - Mapping
https://github.com/dimitrietataru/efcore-mapping
csharp dot-net-5 entity-framework-core entity-mapping many-to-many table-per-hierarchy table-per-type
Last synced: 7 months ago
JSON representation
EntityFramework Core - Mapping
- Host: GitHub
- URL: https://github.com/dimitrietataru/efcore-mapping
- Owner: dimitrietataru
- License: mit
- Created: 2021-01-04T11:13:45.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-05T13:04:56.000Z (over 5 years ago)
- Last Synced: 2025-01-01T11:42:27.391Z (over 1 year ago)
- Topics: csharp, dot-net-5, entity-framework-core, entity-mapping, many-to-many, table-per-hierarchy, table-per-type
- Language: C#
- Homepage:
- Size: 27.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Entity Framework Core - Mapping
## Table of contents
* [Many-to-Many (M2M)](https://github.com/dimitrietataru/efcore-mapping/tree/main/src/EntityFrameworkCore.Prototype.Mapping.ManyToMany)
* [Table-per-Hierarchy (TPH)](https://github.com/dimitrietataru/efcore-mapping/tree/main/src/EntityFrameworkCore.Prototype.Mapping.TablePerHierarchy)
* [Table-per-Type (TPT)](https://github.com/dimitrietataru/efcore-mapping/tree/main/src/EntityFrameworkCore.Prototype.Mapping.TablePerType)
## Credits
- [Entity Framework Core 5.0: The next generation for data access - *Jeremy Likness* & *Shay Rojansky*](https://www.youtube.com/watch?v=BIImyq8qaD4)
- [EF Core 5.0 - What's new?](https://docs.microsoft.com/en-us/ef/core/what-is-new/ef-core-5.0/whatsnew)
## Install
``` powershell
PM> Install-Package Microsoft.EntityFrameworkCore -Version 5.0.1
PM> Install-Package Microsoft.EntityFrameworkCore.SqlServer -Version 5.0.1
```