Entity Framework Core part 1 - getting started

preview_player
Показать описание
Series giới thiệu về EF Core

In this series

✅- Getting started
- ORM: Object relational mapping, map (convert 2 directions - from code C# to sql and from sql map to C# object)
- Sql / Sql Server: [Optional] but good to know before starting with EF
- Setup / Installation

```bash
dotnet add package Microsoft.EntityFrameworkCore.SqlServer
# dotnet add -h

# to find csproj file
git ls-files | grep .csproj$
find . | grep .csproj$
```

- Cli
- DbContext & entities
- Setup DbContext
- Setup entities
- CRUD
- Entities
- Relationship
- Configuration
- Seeding
- Migration
- Working with data
- Query
- Tracking
- Update
- Bulk operators
- Saving
- More
- Logging
- Tips & tricks
Рекомендации по теме
Комментарии
Автор

Video rất hay, cơ mà âm thanh nhỏ quá anh ạ. Lần sau làm video âm thanh lớn hơn xíu nha anh, em phải đeo tai nghe max âm thanh mới nghe được á. Vì em vốn nghe loa ngoài mà loa ngoài thì anh nói nhỏ quá ạ

Автор

Nói về đơn luồng đa luồng với real time nữa đi anh

tuannguyenthai