You can put this inside your entityFramework section of the app.config:
<contexts>
<context type="YourNamespace.YourDbContext, YourAssemblyName" disableDatabaseInitialization="true"/>
</contexts>
This msdn page tells all about the Entity Framework Configuration Section.