i'm trying do some Entity Framework Code First programming to an existing database .. but I keep seeing this code in my Sql Profiler :-
SELECT TOP ( 1 ) [Extent1].[Id] AS [Id],
[Extent1].[ModelHash] AS [ModelHash]
FROM [dbo].[EdmMetadata] AS [Extent1]
ORDER BY [Extent1].[Id] DESC
What the hell is this EdmMetadata table and why do is my EF code trying to grab the Id and ModelHash from there?
Remember, I'm trying to work against an existing DB.
Cheers :)