I\'ve followed Adam\'s answer here and the Entity Framework now works and the Seed() method also works.
Seed()
But when I try to access the database l
EF is looking for a table named dbo.BaseCs. Might be an entity name pluralizing issue. Check out this link.
EDIT: Updated link.