PART I Visual Studio 2017 and .NET Core
1. Introducing Entity Framework Core
2. Building the Data Access Layer with Entity Framework Core
3.Building the RESTful Service with ASP.NET Core MVC Services
4. Introducing ASP.NET Core MVC Web Applications
5. Building the SpyStore Application with ASP.NET Core MVC
1. Introducing Entity Framework Core
ADO.NET สำหรับ .NET ที่ต้องการ create data access layer
– ขั้นต้นโดยการ create connect
– SQL Statements
– commands
– data readers
ORM – Object Relational Mapping ใน .NET
– เพื่อ manage bulk of data access task
– สร้าง mapping ระหว่าง domain models and databases
– CRUD create , read , update , delete ทำโดย ORM
Microsoft เข้าสู่ ORM โดยผ่านทาง Entity Framework
– ส่วน Entity Framework Core หรือ EF Core สำหรับ .NET core
– support – non-relational data store , in-memory databases
– ใช้ใน phones and tablets
– ลด EF footprint of install โดย modularization of framework
p 4
