I have three tables: user, specialUser and special
User contains all the base fields. specialUser has an id which is both, the FK (to user table) and PK and has another field specialId, which is a FK to the special table.
Now, when I add the tables to the edmx, EF has merged the specialuser with the user entity! User now has an extra navigation property to special. I don't want this. I want to have a separate entity for specialuser.
How can I force EF 6 not to merge these entities?