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
Instead of
modelBuilder.Entity().ToTable("dbo.BaseCs");
Try:
modelBuilder.Entity().ToTable("BaseCs");
even if your table name is dbo.BaseCs
dbo.BaseCs