Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use in-memory Entity Framework 6.2.0 or if there any approach to do it [closed]

I want to use in-Memory entity framework , could you help me guys

I can't find a way to use In memory db @ entity framework 6.2.0

like image 547
Ali Alhourani Avatar asked Oct 21 '18 11:10

Ali Alhourani


People also ask

Is Entity Framework 6 still supported?

Currently EF Core is the main focus of development for the Entity Framework Team at Microsoft. This means there are no new major features planned for EF6. However EF6 is still maintained as an open source project and a supported Microsoft product.

How does Entity Framework affect the connection with the database?

Because an open connection to the database consumes a valuable resource, the Entity Framework opens and closes the database connection only as needed. You can also explicitly open the connection. For more information, see Managing Connections and Transactions. Once in each application domain.

Is Entity Framework good for large database?

YES, EF DOES PERFORM JOINS IN MEMORY IF it has a set of values that are provided as a part of query or an in memory list, basically for anything that is not from the database, EF will pull everything from the database, perform the operations in memory and returns the results.


1 Answers

Yes, there is an in-memory provider for EF6 available: https://entityframework-effort.net/

like image 112
ErikEJ Avatar answered Sep 30 '22 04:09

ErikEJ