I am new with Entity Framework 5. Our team is using Code First
workflow.
Before I\'ll start with my main question, let me first show you what I have tr
If you don't use (or cannot use) EF migrations you can use custom initializer as mentioned in this answer. The custom initializer will execute a Seed
method after creating the database = only once when database doesn't exist. If you need to incrementally develop the database initializer itself will not help you (that is what migrations are for).