I added some columns to a table using SQL Server Management Studio, and then wanted to reference them in my project in Visual Studio 2010, where it is loaded using Entity Frameworks, which seems not to have a handy feature for simply importing updates from the database.
So I manually added the columns. They were just bit columns like an existing column, so I used cut and paste to duplicate that column, then renamed them and filled in the Storage field to match.
But then when trying to build the project, it would fail with:
O/R Designer validation failed . . . myDB.dbml Error: The operation could not be completed. Unspecified error
The main tips I found about these not-very-helpful error messages, involved restarting Visual Studio. That didn't help me here.
What else can cause (and what can fix) this error?