Code first custom SQL migration timeout exception

后端 未结 2 1371
栀梦
栀梦 2020-12-10 01:33

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         


        
2条回答
  •  失恋的感觉
    2020-12-10 02:10

    Your request processing may be taking more time than default command timeout of entity framework(30 sec). You can increase command timeout if necessary as in thread below.

    Entity Framework Timeouts

提交回复
热议问题