I am upgrading from EF4 to EF6 and have problems of getting the model to work. I use VS2012.
First I didn't get any code generated which under EF4 worked automatically. I changed EntityModel's Code Generation Strategy from None to Default and got classes generated.
But now my partial classes won't recognize any of the autogenerated class properties anymore.
Partial Public Class myObject
'...
End Class
This class locates under the same Namespace as the autogenerated class. I didn't change anything in the partial classes.
For example when trying to access a navigation property from the partial class,
Visual Studio complains: Error 16 'myObject_assumption' is not a member of 'MyNamespace.MyModel.myObject'
Is there something in EF6 I need to do to make it work?