If you open the EDMX file with the xml editor, in the section where TargetView is set, you will have some xml, similar to the following:
<EntitySet Name=".." EntityType=".." store:Type="Views" store:Schema=".." store:Name=".."> <DefiningQuery>SELECT ....</DefiningQuery>
You need to modify this xml section to have CRUD operations;
<EntitySet Name=".." EntityType=".." store:Type="Tables" Schema=".." />
daryal
source share