I have recently updated a relation table in my database to have an additional field. When I updated my entity model from the database, this relationship has not been updated to contain this field. How can I get access to this property in my models?
Example:
People
---
PersonId - PKEY
PaymentPlans
---
PlanId - PKEY
PersonPaymentPlans
---
PersonId - FKEY
PlanId - FKEY
ConfidenceLevel - INT
In this case, when performing this entity query:
People
.First(p => p.PersonId == pid)
.Plans.First(p => p.PlanId == ppId)
.ConfidenceLevel;
The ConfidenceLevel does not appear as an accessible property. How can I access this value or how can I get my EDMX to expose this property?