.NET Data Community Standup - Entity Framework Core FAQs

preview_player
Показать описание
Join the Microsoft .NET Data team to get answers to many frequently asked questions about EF Core. For example:

What's the difference between EF Core and EF6?
What NuGet packages to I need to install to use EF Core?
Should I always use no-tracking queries?
Why does EF Core sometimes ignore Includes?
What's wrong with using owned types for value objects?
Should I create a repository over EF Core?
Why does the in-memory database not work in my tests?
How do I call stored procedures from EF Core?
How do I see the SQL for a LINQ query?

Рекомендации по теме
Комментарии
Автор

I like, you know, like like these series, you know.

KvapuJanjalia
Автор

Excellent information about EF, specially the diference between EF6 & EF Core, the includes and repository explanation. Thank's !

leosouza
Автор

It is nice that you are still working on improvements. Systems are going to be more complex, so any optimization will be helpful.

I am grateful for the help to my country. We will never forget this.

KravchenkoIgor
Автор

You can most certainly change your ORM and a repository will be useful for that. I don't know what Shay is talking about at 1:50:20.

I don't do repositories because changing the ORM is a risk that doesn't justify the cost of a repository for most project but if you really want to own the abstraction and be able to change the ORM or drop the ORM and write raw SQL then repository is a way to do it.

Eirenarch