OK, I'm completely stumped with this. I may not have enough information to publish here, but I don’t even know where to start. I am trying to "Update Model from Database" in my DAL.edmx file. I included the field in a view that was not previously included. I tried updating, and then tried renaming the view in the database and deleting the view from the DAL so that I could re-add it. Both times I got

Further, for no reason, I tried to add my renamed view to DAL, received the same exception. In manual removal from DAL.tt does not help. The problem is with Googled and only 2 irrelevant results. I don’t know where to even start looking.
I did not write it, but here is the original sql representation (if it helps). The fact that EF will not add renamed hints for the view, can it be with SQL? SQL works fine in mngmnt studio.
SELECT ID, IssueID, IssueTypeID, IssueText, IssueCreateDate, WeekendDate, CustomerName, Employee, CONVERT(DECIMAL(6, 2), AdjustedTotalRHours, 101) AS AdjustedTotalRHours, AdjustedTotalOHours, AdjustedTotalRHours + AdjustedTotalOHours AS Hours, InvoiceNumber, AdjustedInvoiceAmount, COALESCE ((SELECT SUM(InvoiceAmount) AS Expr1 FROM TrendingDataFinal AS I1 WHERE (InvoiceNumber = T1.InvoiceNumber) AND (CompanyID = T1.CompanyID) AND (CalType = 'F') AND (Aident = T1.Aident)), 0) AS TotalInvoiceAmount, InvoiceDate, ROUND(DATEDIFF(DAY, InvoiceDate, GETDATE()), 0) AS DaysOutstanding, Notes, Aident, EINC, IsClosed, CompanyID, (SELECT COUNT(ne.EntryID) AS Expr1 FROM Madison.Notes.Note AS n INNER JOIN Madison.Notes.NoteEntry AS ne ON n.NoteID = ne.NoteId WHERE (n.Key1 = T1.InvoiceNumber)) AS HasNotes, COALESCE ((SELECT TOP (1) CompanyName FROM ReportingCompanies AS I1 WHERE (CompanyId = T1.CompanyID)), '') AS CompanyName, BranchName, PayStatus FROM BillMan_ReportStage AS T1
Any suggestions would be appreciated.
UPDATE: The created brand spanks a new look with the same SQL, went to add it with the same method to DAL, the same error.