why i can't seed data to be added to the database (The seed function dosn't excute) please help me?
this is the code
1-Global.asax:
namespace AlshamyShop
{
public class Global : HttpApplication
{
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
// Initialize the product database.
Database.SetIniti ...
Go to the complete details ...