Skip to content

Commit

Permalink
adding readme
Browse files Browse the repository at this point in the history
adding readem
  • Loading branch information
alugili authored Oct 20, 2017
1 parent d980ab9 commit 3033c93
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# EntityFrameworkCoreDemo
Entity Framework Core Demo, code sample, examples, for presentation, tutor, step by step learn, learn Entity Framework core.

Presentation about:
- What is Entity Framework?
- Entity Framework Architecture
- SQL vs. NoSQL vs. NewSQL: Which one Should I use?
- NoSQL -> not-available in EF-Core
- NewSQL -> not-available in EF-Core
- Simple Example (Configuration, DbContext, Entity)
- Entity Framework Core

Code Examples:
- Simple Example
1) Configuration
2) DbContext
3) Domain Entities

- Entity Relationships:
1) One to Many
2) Many to Many -> available in EF-Core only with a help table
3) One to One

- Logging
- CRUD Operations
- Eager Loading
- Lazy Loading -> not-available in EF-Core
- Explicit Loading
- Conventions
- Data Annotations
- Inheritance: Table per hierarchy (TPH) -> available in EF-Core
- Inheritance: Table per type (TPT) -> not-available in EF-Core
- Inheritance: Table per concrete class (TPC) -> not-available in EF-Core
- Data Seeding
- Migration

Advanced:
- Transaction
- Interception

0 comments on commit 3033c93

Please sign in to comment.