Getting the following error when trying to run a query against a dbcontext assembly in Linqpad.
InvalidOperationException: The model backing the 'UserQuery' context has changed since the database was created. Consider using Code First Migrations to update the database (http://go.microsoft.com/fwlink/?LinkId=238269).
Having done a bit of reading it seems that:
Database.SetInitializer<DiaryAssistantContext>(null);
is needed. However this is already in my derived DbContext class.
Can anybody give me a pointer?