LINQ to Entities x Lambda Expression

Asked

Viewed 277 times

0

What is the difference between LINQ to Entities x Lambda Expression?

Still using LINQ to Entities in the Entity Framework or is there something new?

  • Did the answer resolve what was in doubt? Do you need something else to be improved? Do you think it is possible to accept it now?

1 answer

2

You can’t compare the two things since they do completely different things.

The only relationship between them is that LINQ in general, including Entities, uses lambda as a mechanism.

This has already been answered in several questions:

Every time you are using LINQ with the EF entities you are using LINQ to Entities. It’ll probably always be like this. It only stops using it if it does not use LINQ in the RU, which is practically impossible, or stops using the entities, which in practice stops using the RU. What is almost not used anymore is LINQ to SQL.

There is nothing more new. What exists is a new version of EF, the EF Core.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.