I already have few migrations, and now I am adding another migration, but this time I want to add seed to it. I tried adding this near my Up() and Down() methods:
protected override void Seed(ScykDb context)
{
}
But my compiler says I cannot do that. How can I add seed to my migration?