I am new to Firebird database and I have a requirement where I have to integrate Firebird database with Code First Approach in Entity Framework MVC.
This is what I have done so far:
- I added the connection string for Firebird database in App.Config
- Passing that connection string in DBContext class
- When I run update-database -force command in package manager console it creates Test.FDB database for me, but when I open this database, my tables were not created or migrated. I am using AutoMigrationsEnabled=true also.
Can you please provide a sample/example of creating Firebird database with MVC Code First approach and Entity Framework?