Timeout, changing command timeout on queries

I have a heavy database, and I need a increased max timeout. I can't find where to change the max timeout in radzen.

The timeout can be specified in your data-source settings:

1 Like

Mysql does not have that function.

Anything on that function being added to Mysql?

We will do our best to added as soon as we can. In the meantime you can modify Startup.cs (put it ignore list) like this:

...
 services.AddDbContext<Sakila.Data.SakilaContext>(options =>
      {
        options.UseMySql(Configuration.GetConnectionString("SakilaConnection"), mySqlOptions => {
                        mySqlOptions.CommandTimeout(120);
                    });
      });
...