Say I have a database table Node.

The table contains (among other attributes) the ParentID attribute which is a self-referencing FK.

Entity Framework model created from such database table contains two navigational properties:

  • EntityCollection<Node> Node1
  • Node Node2

The names are confusing so I changed the names in the designer.

The problem with the approach is that the designer will overwrite my changes when updating the same class.

What I'd like to do is create the partial classes (in another file) that would basically wrap the mentioned navigation properties:

public EntityCollection<Node> ChildrenNodes 
{
    get
    {
        return Node1;
    }
    set
    {
        Node1 = value;
    }
}

public Node ParentNode 
{
    get
    {
        return Node2;
    }
    set
    {
        Node2 = value;
    }
}

Now, I can recreate the EDMX from scratch and my properties will remain.

However, what I am not sure about is whether this will break the Entity Framework. I don't know how much EF accesses by the name, so I am not sure what would be the consequences of such action.

Would this work normally or would it create some problems?

link|improve this question

78% accept rate
Which version are you using? I thought that any name changes were persisted during edmx updates. – Kirk Broadhurst Aug 25 '11 at 3:16
Perhaps they are, however, I remember changing some things in the database (not sure if it was a relationship or a nullable field or something like that) was never seen in the EDMX unless the tables in question were deleted from the model and then readded, thus losing the names. – Kornelije Petak Aug 25 '11 at 8:25
That's the case with LINQ-to-SQL but Entity Framework works much better, in my experience. – Kirk Broadhurst Aug 25 '11 at 8:29
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.