Manually editing the .edmx file worked for me. Open the file in a text or XML editor (you can right-click and open with ...)
Go to the node schema in ConceptualModels and change this:
<edmx:ConceptualModels> <Schema Namespace="MyDataModel" Alias="Self" xmlns="http://schemas.microsoft.com/ado/2009/11/edm"> ...
to add an attribute, for example:
<edmx:ConceptualModels> <Schema Namespace="MyDataModel" Alias="Self" xmlns="http://schemas.microsoft.com/ado/2009/11/edm" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" annotation:UseStrongSpatialTypes="false">
This is pretty annoying, this attribute is not editable.
source share