How to optimize EntityFramework 6 [closed]

4

Someone can help me how to optimize Entity Framework , by which it takes several seconds to load the EDMX (Conceptual model, Store Model, Mapping Model).

    
asked by Jorge Luis Guzman Saldaña 06.12.2015 в 19:51
source

1 answer

1

I recommend you use an initialization strategy, this helps the database to be initialized only once and you do not have to reload the context every time you do some CRUD operation.

Take as a reference this url

    
answered by 06.12.2015 / 19:58
source