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 :)
3)Database Version Control Versioning databases is hard, but with code first and code first migrations, it's much more effective. Because your database schema is fully based on your code models, by version controlling your source code you're helping to version your database.
EdmMetadata table keeps hash of current code-first model and it allows DbContext detecting changes of model so that database can be recreated. This feature is turned on by default.
In the code first approach, the programmer has to write the classes with the required properties first, while in the database first approach, the programmer has to create first the database using GUI.
There is no Code-First against existing database. If you have database you are doing Database-first. In such case your mapping is driven by database.
EdmMetadata table keeps hash of current code-first model and it allows DbContext
detecting changes of model so that database can be recreated. This feature is turned on by default. You can turn it off by removing convention in OnModelCreating
:
modelBuilder.Conventions.Remove<IncludeMetadataConvention>();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With