Error updating EDMX file

Solution 1:

The problem is probably that your procedure performs SELECTs without naming all the columns.

See this: http://entityframework.codeplex.com/workitem/1529

If you procedure has something like SELECT 1, you will get the "Identifier is null or empty!" error. But if it was SELECT 1 as 'One' then it should work.