I have an application using EF code first. Unfortunately the first query takes an awful lot of time to load. When I goggled, I realized this is a quite common problem. Obviously EF needs to init/generate some views in order to work properly.
To speed this up, it's possible to generate pre-compiled views. But all solutions I found use the EF Power Tools. Unfortunately it's not possible to install the Power Tools in VS Express, at least I haven't found a way (please correct me if I'm wrong).
Is there any way to generate the views without the power tools? (maybe command line?)
Ciao, Dante