You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another difference between EF6 reverse engineering is that I have a table named Segment, and another one called Field. A field has a navigation property to Segment. Instead of the name being Field.Segment as it was in EF6, it called is Field.SegmentNameNavigation
private Segment m_SegmentNameNavigation;
public Segment SegmentNameNavigation
{
get { return m_SegmentNameNavigation; }
set
{
if(m_SegmentNameNavigation != value)
{
m_SegmentNameNavigation = value;
OnPropertyChanged();
}
}
}
This is the only navigation property that seems to get named differently than EF6.
The modelbuilder code generated for this entity is:
Another difference between EF6 reverse engineering is that I have a table named Segment, and another one called Field. A field has a navigation property to Segment. Instead of the name being Field.Segment as it was in EF6, it called is Field.SegmentNameNavigation
This is the only navigation property that seems to get named differently than EF6.
The modelbuilder code generated for this entity is:
This is the only navigation property that seems to get named differently than EF6.
The modelbuilder code generated for this entity is:
@jonreis
The text was updated successfully, but these errors were encountered: