I am trying to create FULL TEXT index using Entity Framework Migration by executing custom Sql.
My migration class looks like this:
public partial cl
Use Configuration.cs file to set custom time out:
internal sealed class Configuration : DbMigrationsConfiguration { public Configuration() { AutomaticMigrationsEnabled = false; ContextKey = "YourDbContext"; // New timeout in seconds this.CommandTimeout = 60 * 5; } }